increments('id'); $table->string('lcc_number', 255)->nullable(); $table->integer('no_of_years')->nullable(); $table->date('start_date')->nullable(); $table->integer('start_year')->nullable(); $table->double('slack', 10,2)->nullable(); $table->double('cpi', 10,2)->nullable(); $table->text('priority')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('assetise_asset_lccs'); } }