increments('id'); $table->integer('condition_id')->nullable(); $table->enum('type', [])->nullable(); $table->text('name')->nullable(); $table->integer('risk_rating')->nullable(); $table->integer('row_number')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('assetise_asset_consequences'); } }