why didn't it just rename the file? eh
This commit is contained in:
parent
d2f982c5d1
commit
d5a20f836e
@ -1,30 +0,0 @@
|
||||
CREATE TABLE accounts (
|
||||
id serial NOT NULL PRIMARY KEY,
|
||||
acct VARCHAR(100) NOT NULL UNIQUE,
|
||||
avatar VARCHAR(2083) NOT NULL,
|
||||
bot boolean,
|
||||
created_at VARCHAR(100) NOT NULL,
|
||||
display_name VARCHAR(100) NOT NULL,
|
||||
url VARCHAR(2083) NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE posts (
|
||||
id serial NOT NULL PRIMARY KEY,
|
||||
url VARCHAR(2083) NOT NULL,
|
||||
content text,
|
||||
strippedcontent text,
|
||||
created_at timestamptz DEFAULT NOW(),
|
||||
|
||||
posthash bytea UNIQUE
|
||||
);
|
||||
|
||||
CREATE TABLE instances (
|
||||
id serial NOT NULL PRIMARY KEY,
|
||||
endpoint VARCHAR(2083) NOT NULL,
|
||||
autostart boolean,
|
||||
state varchar(16),
|
||||
username varchar(32),
|
||||
password varchar(32),
|
||||
|
||||
software varchar(50)
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user