26 lines
491 B
D
26 lines
491 B
D
module db.migrations.m_001_initial;
|
|
|
|
import db.migrations.migration;
|
|
|
|
Migration Initial = Migration(
|
|
[
|
|
`create table users(
|
|
id uuid not null,
|
|
name character varying(255),
|
|
handle character varying(255),
|
|
local boolean not null,
|
|
ap_id character varying(255) not null,
|
|
ap_privkey text,
|
|
ap_pubkey text,
|
|
ap_shared_inbox text,
|
|
ap_inbox text,
|
|
ap_outbox text,
|
|
ap_followers_addr text,
|
|
ap_following_addr text
|
|
);`
|
|
],
|
|
[
|
|
`drop table users;`
|
|
],
|
|
);
|