increments('id'); $table->string('title', 255)->nullable(); $table->string('artists', 200)->nullable(); $table->text('description')->nullable(); $table->double('price', 50)->nullable(); $table->text('thumbnail')->nullable(); $table->enum('genre', ['general','electronic','devotional','devotional','folk','fusion','disco','dance'])->nullable(); $table->enum('status', ['show','hide'])->nullable(); $table->timestamp('release_date')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('albums'); } }