@@ -15,7 +15,7 @@ |
||
| 15 | 15 | { |
| 16 | 16 | $tableName = config('links.tables.links'); |
| 17 | 17 | |
| 18 | - Schema::create($tableName, function (Blueprint $table) { |
|
| 18 | + Schema::create($tableName, function(Blueprint $table) { |
|
| 19 | 19 | $table->increments('id'); |
| 20 | 20 | $table->string('url'); |
| 21 | 21 | $table->text('data'); |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | { |
| 16 | 16 | $tableName = config('links.tables.groups'); |
| 17 | 17 | |
| 18 | - Schema::create($tableName, function (Blueprint $table) { |
|
| 18 | + Schema::create($tableName, function(Blueprint $table) { |
|
| 19 | 19 | $table->increments('id'); |
| 20 | 20 | $table->dateTime('expiry')->nullable(); |
| 21 | 21 | $table->integer('click_limit')->nullable(); |