increments('id'); $table->string('number', 5)->unique(); $table->string('title', 191)->default(''); $table->string('author', 191)->nullable(); $table->string('verse', 191)->nullable(); $table->string('key', 5)->nullable(); $table->text('text'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('songs'); } }