Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create(config('magiclink.magiclink_table', 'magic_links'), function (Blueprint $table) { |
||
17 | $table->uuid('id')->primary(); |
||
18 | $table->string('token', 255); |
||
19 | $table->text('action'); |
||
20 | $table->unsignedTinyInteger('num_visits')->default(0); |
||
21 | $table->unsignedTinyInteger('max_visits')->nullable(); |
||
22 | $table->timestamp('available_at')->nullable(); |
||
23 | $table->timestamps(); |
||
24 | }); |
||
37 |