Adds columns for author names and emails to both threads and posts. "Users" don't (yet? who knows!) exist as independent entity in Converse, they are simply "inferred" via OIDC providers.
5 lines
179 B
SQL
5 lines
179 B
SQL
ALTER TABLE threads DROP COLUMN author_name;
|
|
ALTER TABLE threads DROP COLUMN author_email;
|
|
|
|
ALTER TABLE posts DROP COLUMN author_name;
|
|
ALTER TABLE posts DROP COLUMN author_email;
|