increments('id'); $table->string('name',100)->nullable(); $table->integer('user_id')->nullable(); $table->timestamps(); $table->softDeletes(); $table->engine = 'InnoDB'; }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('status_labels'); } }