increments('id'); $table->integer('country_id')->nullable(); $table->integer('city_id')->nullable(); $table->integer('location_id')->nullable(); $table->string('name', 255)->nullable(); $table->string('name_pf', 200)->nullable(); $table->string('name_byt', 200)->nullable(); $table->string('name_dbz', 200)->nullable(); $table->string('name_hoz', 200)->nullable(); $table->string('code', 10)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_location_sublocations'); } }