increments('id'); $table->string('name'); $table->string('value'); $table->timestamp('created_at')->nullable(); $table->timestamp('updated_at')->nullable(); $table->collation = config('database.connections.mysql.collation'); $table->charset = config('database.connections.mysql.charset'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('options'); } }