1
0
Fork 0
database/20230219051357_word_inflect...

6 lines
159 B
MySQL
Raw Permalink Normal View History

2023-02-19 05:14:43 +00:00
BEGIN;
ALTER TABLE words ADD COLUMN inflections TEXT;
ALTER TABLE words ADD CONSTRAINT inflections_is_sane_text
CHECK (is_sane_text(inflections));
COMMIT;