mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-02-09 21:19:51 -06:00
14 lines
452 B
SQL
14 lines
452 B
SQL
CREATE TABLE users(
|
|
username TEXT PRIMARY KEY,
|
|
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
modified TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
display_name TEXT NOT NULL,
|
|
password_hash TEXT NOT NULL,
|
|
deleted TIMESTAMP,
|
|
root uuid NOT NULL REFERENCES resources(id),
|
|
home uuid NOT NULL REFERENCES resources(id)
|
|
);
|
|
|
|
---- create above / drop below ----
|
|
|
|
DROP TABLE users; |