mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-10 18:28:59 +00:00
oops forgot the semicolons
This commit is contained in:
parent
bb37f226b2
commit
e0a5cff3a7
1 changed files with 5 additions and 5 deletions
10
setup.sql
10
setup.sql
|
@ -1,6 +1,6 @@
|
||||||
CREATE TABLE IF NOT EXISTS `users` (`id` BINARY(64) PRIMARY KEY, `email` VARCHAR(128) UNIQUE NOT NULL, `password` BINARY(60) NOT NULL);
|
CREATE TABLE IF NOT EXISTS `users` (`id` BINARY(64) PRIMARY KEY, `email` VARCHAR(128) UNIQUE NOT NULL, `password` BINARY(60) NOT NULL);
|
||||||
CREATE TABLE IF NOT EXISTS `contact_settings` (FOREIGN KEY (`user_id`) REFERENCES users(id) ON DELETE CASCADE, `fetch` ENUM(`always`, `once`, `never`) DEFAULT `once` , `submit` ENUM(`always`, `once`, `never`) DEFAULT `once`, `generation` ENUM(`always`, `once`, `never`) DEFAULT `once`, `reply` ENUM(`always`, `once`, `never`) DEFAULT `once`)
|
CREATE TABLE IF NOT EXISTS `contact_settings` (FOREIGN KEY (`user_id`) REFERENCES users(id) ON DELETE CASCADE, `fetch` ENUM(`always`, `once`, `never`) DEFAULT `once` , `submit` ENUM(`always`, `once`, `never`) DEFAULT `once`, `generation` ENUM(`always`, `once`, `never`) DEFAULT `once`, `reply` ENUM(`always`, `once`, `never`) DEFAULT `once`);
|
||||||
CREATE TABLE IF NOT EXISTS `bots` (`id` BINARY(64) PRIMARY KEY, FOREIGN KEY (`user_id`) REFERENCES users(id) ON DELETE CASCADE, `enabled` BOOLEAN DEFAULT 1, `replies_enabled` BOOLEAN DEFAULT 1, `post_frequency` INT(3) DEFAULT 30, `content_warning` VARCHAR(128), `length` INT(4) DEFAULT 500, `fake_mentions` ENUM(`always`, `start`, `never`) DEFAULT `start`, `fake_mentions_full` BOOLEAN DEFAULT 0, `post_privacy` ENUM(`public`, `unlisted`, `followers_only`) DEFAULT `unlisted`, `learn_from_cw` BOOLEAN DEFAULT 0, `last_post` DATETIME DEFAULT 0, FOREIGN KEY (`credentials_id`) REFERENCES credentials(id) ON DELETE CASCADE)
|
CREATE TABLE IF NOT EXISTS `bots` (`id` BINARY(64) PRIMARY KEY, FOREIGN KEY (`user_id`) REFERENCES users(id) ON DELETE CASCADE, `enabled` BOOLEAN DEFAULT 1, `replies_enabled` BOOLEAN DEFAULT 1, `post_frequency` INT(3) DEFAULT 30, `content_warning` VARCHAR(128), `length` INT(4) DEFAULT 500, `fake_mentions` ENUM(`always`, `start`, `never`) DEFAULT `start`, `fake_mentions_full` BOOLEAN DEFAULT 0, `post_privacy` ENUM(`public`, `unlisted`, `followers_only`) DEFAULT `unlisted`, `learn_from_cw` BOOLEAN DEFAULT 0, `last_post` DATETIME DEFAULT 0, FOREIGN KEY (`credentials_id`) REFERENCES credentials(id) ON DELETE CASCADE);
|
||||||
CREATE TABLE IF NOT EXISTS `credentials` (`id` INT AUTO_INCREMENT PRIMARY KEY, `client_id` VARCHAR(128) NOT NULL, `client_secret` VARCHAR(128) NOT NULL, `secret` VARCHAR(128) NOT NULL)
|
CREATE TABLE IF NOT EXISTS `credentials` (`id` INT AUTO_INCREMENT PRIMARY KEY, `client_id` VARCHAR(128) NOT NULL, `client_secret` VARCHAR(128) NOT NULL, `secret` VARCHAR(128) NOT NULL);
|
||||||
CREATE TABLE IF NOT EXISTS `fedi_account` (`outbox` VARCHAR(256) PRIMARY KEY, `instance` VARCHAR(256) NOT NULL, FOREIGN KEY (`credentials_id`) REFERENCES credentials(id) ON DELETE CASCADE)
|
CREATE TABLE IF NOT EXISTS `fedi_account` (`outbox` VARCHAR(256) PRIMARY KEY, `instance` VARCHAR(256) NOT NULL, FOREIGN KEY (`credentials_id`) REFERENCES credentials(id) ON DELETE CASCADE);
|
||||||
CREATE TABLE IF NOT EXISTS `posts` (`id` BIGINT AUTO_INCREMENT PRIMARY KEY, `post_id` VARCHAR(64) NOT NULL, `content` VARCHAR(65535) NOT NULL, cw BOOLEAN NOT NULL)
|
CREATE TABLE IF NOT EXISTS `posts` (`id` BIGINT AUTO_INCREMENT PRIMARY KEY, `post_id` VARCHAR(64) NOT NULL, `content` VARCHAR(65535) NOT NULL, cw BOOLEAN NOT NULL);
|
||||||
|
|
Loading…
Reference in a new issue