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