increments('id'); $table->integer('album_id')->nullable(); $table->string('title', 255)->nullable(); $table->string('singers', 200)->nullable(); $table->string('writers', 200)->nullable(); $table->string('direction', 200)->nullable(); $table->text('description')->nullable(); $table->integer('length')->nullable(); $table->text('file')->nullable(); $table->text('thumbnail')->nullable(); $table->enum('status', ['show','hide'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('musics'); } }