diff --git a/database/migrations/2021_05_01_153604_add_verse_code_to_words_table.php b/database/migrations/2021_05_01_153604_add_verse_code_to_words_table.php new file mode 100644 index 0000000..0fde59e --- /dev/null +++ b/database/migrations/2021_05_01_153604_add_verse_code_to_words_table.php @@ -0,0 +1,32 @@ +string('verse_code')->after('id'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('words', function (Blueprint $table) { + $table->dropColumn('verse_code'); + }); + } +}