mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
81da0853aa
- Adding post editing. Fixes #23 - Making SQL versions of comment and post fetching. Fixes #21 - Starting to add forum categories. #17
61 lines
1.5 KiB
SQL
61 lines
1.5 KiB
SQL
create table category (
|
|
id serial primary key,
|
|
name varchar(100) not null unique
|
|
);
|
|
|
|
insert into category (name) values
|
|
('Discussion'),
|
|
('Humor/Memes'),
|
|
('Gaming'),
|
|
('Movies'),
|
|
('TV'),
|
|
('Music'),
|
|
('Literature'),
|
|
('Comics'),
|
|
('Photography'),
|
|
('Art'),
|
|
('Learning'),
|
|
('DIY'),
|
|
('Lifestyle'),
|
|
('News'),
|
|
('Politics'),
|
|
('Society'),
|
|
('Gender/Identity/Sexuality'),
|
|
('Race/Colonisation'),
|
|
('Religion'),
|
|
('Science/Technology'),
|
|
('Programming/Software'),
|
|
('Health/Sports/Fitness'),
|
|
('Porn'),
|
|
('Places'),
|
|
('Meta'),
|
|
('Other');
|
|
|
|
|
|
|
|
create table community (
|
|
id serial primary key,
|
|
name varchar(20) not null unique,
|
|
title varchar(100) not null,
|
|
description text,
|
|
category_id int references category on update cascade on delete cascade not null,
|
|
creator_id int references user_ on update cascade on delete cascade not null,
|
|
published timestamp not null default now(),
|
|
updated timestamp
|
|
);
|
|
|
|
create table community_moderator (
|
|
id serial primary key,
|
|
community_id int references community on update cascade on delete cascade not null,
|
|
user_id int references user_ on update cascade on delete cascade not null,
|
|
published timestamp not null default now()
|
|
);
|
|
|
|
create table community_follower (
|
|
id serial primary key,
|
|
community_id int references community on update cascade on delete cascade not null,
|
|
user_id int references user_ on update cascade on delete cascade not null,
|
|
published timestamp not null default now()
|
|
);
|
|
|
|
insert into community (name, title, category_id, creator_id) values ('main', 'The default Community', 1, 1);
|