diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 00000000..9b1dffd9 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite diff --git a/database/migrations/.gitkeep b/database/migrations/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/database/migrations/2020_11_14_151336_change_artist_name_length.php b/database/migrations/2020_11_14_151336_change_artist_name_length.php deleted file mode 100644 index 8886d998..00000000 --- a/database/migrations/2020_11_14_151336_change_artist_name_length.php +++ /dev/null @@ -1,24 +0,0 @@ -dropIndex('artists_name_unique'); - $table->text('name')->change(); - $table->unique(['name']); - }); - } - - public function down(): void - { - Schema::table('artists', static function (Blueprint $table): void { - $table->string('name', 191)->change(); - }); - } -}