Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
11 | public function execute() |
||
12 | { |
||
13 | Capsule::schema()->create('cities', function ($table) { |
||
14 | $table->increments('id'); |
||
15 | $table->integer('region_id')->unsigned()->index()->nullable(); |
||
16 | $table->foreign('region_id')->references('id')->on('regions')->onDelete('cascade'); |
||
17 | $table->string('title', 100); |
||
18 | $table->string('area', 100); |
||
19 | $table->text('description')->nullable(); |
||
20 | $table->string('code')->nullable()->comments('unique value'); |
||
21 | $table->timestamps(); |
||
22 | }); |
||
23 | } |
||
24 | |||
42 | } |