engine = 'InnoDB'; $table->increments('id'); $table->string('name'); $table->longText('value'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down() { Schema::drop('settings'); } }