s1llyw0rdz/storage/sql.go
2021-11-28 15:31:51 +01:00

43 lines
1.2 KiB
Go

// Code generated by go generate; DO NOT EDIT.
package storage
var SqlMap = map[string]string{
"schema_version_1": `-- create schema version table
create table schema_version (
version text not null
);
-- create users table
create table users
(
name text primary key CHECK (name <> ''),
hash text not null CHECK (hash <> ''),
created_at timestamp with time zone DEFAULT now()
);
-- create posts status
create table statuses
(
id serial primary key,
author TEXT references users(name) NOT NULL,
content VARCHAR(500) NOT NULL CHECK (content <> ''),
created_at timestamp with time zone DEFAULT now()
);
`,
"schema_version_2": `alter table users
add column status_id int references statuses(id);
`,
"schema_version_3": `alter table users
add column homepage varchar(500) not null DEFAULT '',
add column about varchar(500) not null DEFAULT '';
`,
"schema_version_4": `alter table users
alter column about TYPE TEXT;`,
"schema_version_5": `alter table users
add column style TEXT not null DEFAULT '';`,
"schema_version_6": `alter table users
add column picture varchar(500) not null DEFAULT '';`,
"schema_version_7": `alter table users
add column email varchar(500) not null DEFAULT '';`,
}