Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('districts', function (Blueprint $table) { |
||
17 | $table->bigIncrements('id'); |
||
18 | $table->unsignedBigInteger('division_id'); |
||
19 | $table->string('name'); |
||
20 | $table->string('bn_name')->nullable(); |
||
21 | $table->string('lat')->nullable(); |
||
22 | $table->string('lon')->nullable(); |
||
23 | $table->string('url')->nullable(); |
||
24 | $table->timestamps(); |
||
25 | }); |
||
26 | } |
||
27 | |||
38 |