1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00
This commit is contained in:
J. King 2020-11-01 09:37:59 -05:00
parent 8ad7fc81a8
commit 905f8938e2
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ alter table arsse_users add column num bigint unsigned unique;
alter table arsse_users add column admin boolean not null default 0;
alter table arsse_users add column lang longtext;
alter table arsse_users add column tz varchar(44) not null default 'Etc/UTC';
alter table arsse_users add column soort_asc boolean not null default 0;
alter table arsse_users add column sort_asc boolean not null default 0;
create temporary table arsse_users_existing(
id text not null,
num serial primary key

View file

@ -6,7 +6,7 @@ alter table arsse_users add column num bigint unique;
alter table arsse_users add column admin smallint not null default 0;
alter table arsse_users add column lang text;
alter table arsse_users add column tz text not null default 'Etc/UTC';
alter table arsse_users add column soort_asc smallint not null default 0;
alter table arsse_users add column sort_asc smallint not null default 0;
create temp table arsse_users_existing(
id text not null,
num bigserial