Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function up() |
||
19 | { |
||
20 | Schema::create('datastore_comments', function (Blueprint $table) { |
||
21 | $table->bigIncrements('id'); |
||
22 | $table->bigInteger('user_id')->unsigned(); |
||
23 | $table->bigInteger('datastore_id')->unsigned(); |
||
24 | $table->bigInteger('parent_id')->unsigned()->nullable(); |
||
25 | $table->text('body'); |
||
26 | $table->timestamps(); |
||
27 | $table->softDeletes(); |
||
28 | }); |
||
44 |