mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-23 10:51:08 +00:00
7 lines
No EOL
278 B
SQL
7 lines
No EOL
278 B
SQL
alter table article add column approved bool not null default true;
|
|
|
|
alter table article add column published timestamptz not null default now();
|
|
|
|
alter table conflict add column published timestamptz not null default now();
|
|
|
|
alter table edit rename column created to published; |