mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
783e577311
* todo * update env var * add new var to config * update GetCount (not archived threads) * wip on threads count check * feat: add get oldest updated at thread * feat: add archivation method for oldest threads * feat: add migrations for posts timefields * feat: now child posts created without updated_at * feat: add threads archivation
37 lines
721 B
SQL
37 lines
721 B
SQL
CREATE TABLE posts
|
|
(
|
|
id SERIAL NOT NULL,
|
|
|
|
is_parent BOOLEAN NOT NULL,
|
|
parent_id INT REFERENCES posts (id) NULL,
|
|
|
|
is_deleted BOOLEAN DEFAULT false NOT NULL,
|
|
|
|
title VARCHAR NOT NULL,
|
|
text TEXT NOT NULL,
|
|
is_sage BOOLEAN NOT NULL,
|
|
|
|
created_at TIMESTAMP DEFAULT NOW() NOT NULL,
|
|
updated_at TIMESTAMP DEFAULT NOW() NOT NULL,
|
|
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE files
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
post_id INTEGER NOT NULL,
|
|
name VARCHAR NOT NULL,
|
|
ext VARCHAR NOT NULL,
|
|
size INTEGER NOT NULL,
|
|
created_at TIMESTAMP DEFAULT NOW() NOT NULL,
|
|
FOREIGN KEY (post_id) REFERENCES posts (id)
|
|
);
|
|
|
|
CREATE TABLE migrations
|
|
(
|
|
id INT NOT NULL,
|
|
name VARCHAR NOT NULL,
|
|
created_at TIMESTAMP DEFAULT NOW() NOT NULL
|
|
)
|