Conditions | 1 |
Paths | 1 |
Total Lines | 24 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function up() |
||
16 | { |
||
17 | Schema::create('short_links', function (Blueprint $table) { |
||
18 | |||
19 | // ID |
||
20 | $table->string('id'); |
||
21 | |||
22 | // FK |
||
23 | // ... |
||
24 | |||
25 | // Data |
||
26 | $table->string('url')->nullable(); |
||
27 | $table->date('not_before')->nullable(); |
||
28 | $table->date('expire_at')->nullable(); |
||
29 | $table->boolean('enabled')->default(true); |
||
30 | |||
31 | // Other |
||
32 | $table->timestamps(); |
||
33 | |||
34 | // Indexes |
||
35 | $table->primary('id'); |
||
36 | |||
37 | }); |
||
38 | } |
||
39 | |||
50 |