4 lines
134 B
MySQL
4 lines
134 B
MySQL
|
ALTER TABLE article_revisions ADD COLUMN author TEXT CHECK (author != '');
|
||
|
|
||
|
CREATE INDEX author_lookup ON article_revisions (author);
|