Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function up() |
||
10 | { |
||
11 | Schema::create('activeable_models', function (Blueprint $table) { |
||
12 | $table->id(); |
||
13 | $table->boolean('is_active'); |
||
14 | $table->json('payload')->nullable(); |
||
15 | $table->string('object_type'); |
||
16 | $table->unsignedBigInteger('object_id'); |
||
17 | $table->dateTime('created_at'); |
||
18 | }); |
||
19 | } |
||
20 | |||
26 |