Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
9 | public function execute() |
||
10 | { |
||
11 | Capsule::schema()->create('regions', function ($table) { |
||
12 | $table->increments('id'); |
||
13 | $table->integer('country_id')->unsigned()->index(); |
||
14 | $table->foreign('country_id')->references('id')->on('country')->onDelete('cascade'); |
||
15 | $table->string('title', 100); |
||
16 | $table->text('description')->nullable(); |
||
17 | $table->timestamps(); |
||
18 | }); |
||
19 | } |
||
20 | |||
38 | } |