Completed
Push — master ( 7ee247...f51536 )
by Zura
01:48
created
src/migrations/2016_05_17_221000_create_promocodes_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create(config('promocodes.table', 'promocodes'), function (Blueprint $table) {
15
+        Schema::create(config('promocodes.table', 'promocodes'), function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->string('code', 32)->unique();
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
             $table->timestamp('expires_at')->nullable();
25 25
         });
26 26
 
27
-        Schema::create(config('promocodes.relation_table', 'promocode_user'), function (Blueprint $table) {
27
+        Schema::create(config('promocodes.relation_table', 'promocode_user'), function(Blueprint $table) {
28 28
             $table->unsignedInteger('user_id');
29 29
             $table->unsignedInteger('promocode_id');
30 30
             
Please login to merge, or discard this patch.