increments('id'); $table->integer('snagging_id')->nullable(); $table->string('name', 50)->nullable(); $table->text('details')->nullable(); $table->decimal('cost', 12,3)->nullable(); $table->dateTime('deleted_At')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_snagging_areas'); } }