Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('achievement_criteriables', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('achievement_criteriable_type')->index(); |
||
19 | $table->unsignedInteger('achievement_criteriable_id')->index(); |
||
20 | $table->unsignedInteger('achievement_criteria_model_id')->index(); |
||
21 | $table->unsignedInteger('value')->index(); |
||
22 | $table->tinyInteger('completed')->default(0)->index(); |
||
23 | $table->text('progress_data')->nullable(); |
||
24 | $table->timestamp('updated_at'); |
||
25 | }); |
||
26 | } |
||
27 | |||
38 |