diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2024-03-18 22:20:23 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2024-03-18 22:57:57 +0100 |
| commit | 6c5f73b241d3b31123fbbc61cc4acf76adae8d5e (patch) | |
| tree | 213291754e5a591c0c78f1eef06bdd7f66ff2c79 /db/migrate | |
| parent | cb9113ceff41ed374e4ecce2583b4f9e3ff506dc (diff) | |
| download | operum-6c5f73b241d3b31123fbbc61cc4acf76adae8d5e.tar.gz operum-6c5f73b241d3b31123fbbc61cc4acf76adae8d5e.zip | |
thing: removed unique index on title
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20240318211829_remove_uniqueness_index_on_title_things.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20240318211829_remove_uniqueness_index_on_title_things.rb b/db/migrate/20240318211829_remove_uniqueness_index_on_title_things.rb new file mode 100644 index 0000000..96b5be6 --- /dev/null +++ b/db/migrate/20240318211829_remove_uniqueness_index_on_title_things.rb @@ -0,0 +1,5 @@ +class RemoveUniquenessIndexOnTitleThings < ActiveRecord::Migration[7.1] + def change + remove_index :things, :title + end +end |
