id(); $table->string('display_name', 100); $table->string('display_desc'); $table->string('name', 100)->unique('name'); $table->string('value'); $table->char('data_type', 10)->default('string'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }