Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | $tableName = config('links.tables.groups'); |
||
17 | |||
18 | Schema::create($tableName, function (Blueprint $table) { |
||
19 | $table->increments('id'); |
||
20 | $table->dateTime('expiry')->nullable(); |
||
21 | $table->integer('click_limit')->nullable(); |
||
22 | $table->timestamps(); |
||
23 | }); |
||
40 |