mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
Typo
This commit is contained in:
parent
8ad7fc81a8
commit
905f8938e2
2 changed files with 2 additions and 2 deletions
|
@ -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 admin boolean not null default 0;
|
||||||
alter table arsse_users add column lang longtext;
|
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 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(
|
create temporary table arsse_users_existing(
|
||||||
id text not null,
|
id text not null,
|
||||||
num serial primary key
|
num serial primary key
|
||||||
|
|
|
@ -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 admin smallint not null default 0;
|
||||||
alter table arsse_users add column lang text;
|
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 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(
|
create temp table arsse_users_existing(
|
||||||
id text not null,
|
id text not null,
|
||||||
num bigserial
|
num bigserial
|
||||||
|
|
Loading…
Reference in a new issue