Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
10 | public function execute() |
||
11 | { |
||
12 | Capsule::schema()->create('country', function ($table) { |
||
13 | $table->increments('id'); |
||
14 | $table->string('title', 100); |
||
15 | $table->string('code')->nullable()->comments('unique value'); |
||
16 | $table->text('description')->nullable(); |
||
17 | $table->timestamps(); |
||
18 | }); |
||
19 | } |
||
20 | |||
38 | } |