@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('promocodes', function (Blueprint $table) { |
|
15 | + Schema::create('promocodes', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | |
18 | 18 | $table->string('code', 32)->unique(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $table->timestamp('expires_at')->nullable(); |
26 | 26 | }); |
27 | 27 | |
28 | - Schema::create('promocode_user', function (Blueprint $table) { |
|
28 | + Schema::create('promocode_user', function(Blueprint $table) { |
|
29 | 29 | $table->unsignedBigInteger('user_id'); |
30 | 30 | $table->unsignedBigInteger('promocode_id'); |
31 | 31 |