| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('tm_districts', function (Blueprint $table) { |
||
| 17 | $table->bigIncrements('id'); |
||
| 18 | $table->unsignedBigInteger('city_id'); |
||
| 19 | $table->string('name', 255); |
||
| 20 | $table->string('latitude')->nullable(); |
||
| 21 | $table->string('longitude')->nullable(); |
||
| 22 | $table->timestamps(); |
||
| 23 | }); |
||
| 24 | Schema::table('tm_districts', function (Blueprint $table) { |
||
| 25 | $table->foreign('city_id') |
||
| 26 | ->references('id')->on('tm_cities') |
||
| 27 | ->onDelete('cascade'); |
||
| 28 | }); |
||
| 41 |