Remove column words.inflections
This commit is contained in:
parent
6a454ecc52
commit
1710afcd13
2 changed files with 4 additions and 0 deletions
3
20230324221957_remove_inflections.down.sql
Normal file
3
20230324221957_remove_inflections.down.sql
Normal file
|
@ -0,0 +1,3 @@
|
|||
ALTER TABLE words ADD COLUMN inflections TEXT;
|
||||
ALTER TABLE words ADD CONSTRAINT inflections_is_sane_text
|
||||
CHECK (is_sane_text(inflections));
|
1
20230324221957_remove_inflections.up.sql
Normal file
1
20230324221957_remove_inflections.up.sql
Normal file
|
@ -0,0 +1 @@
|
|||
ALTER TABLE words DROP COLUMN inflections;
|
Loading…
Add table
Reference in a new issue