increments('id'); $table->string('name', 255)->nullable(); $table->text('image')->nullable(); $table->enum('radio', [])->nullable(); $table->string('subject', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('register4s'); } }