1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-11-09 11:42:28 +01:00

Style fix

This commit is contained in:
Chaoyi Zha 2017-02-11 10:18:49 -05:00
parent a9a9909e34
commit 27cb6ab16a

View File

@ -29,12 +29,10 @@ class AddLinkTableIndexes extends Migration
DB::table('links')
->where('id', $link->id)
->update([
'long_url_hash' => sprintf('%u', crc32($link->long_url))]
);
'long_url_hash' => sprintf('%u', crc32($link->long_url))
]);
}
});
}
public function down()