id(); $table->string('name'); $table->string('alt')->nullable(); $table->boolean('exclude')->default(false); $table->string('group')->nullable(); $table->boolean('mb')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('buttons'); } }