biter/migrations/20240310230509_first.sql
2024-03-13 03:10:51 +03:00

10 lines
180 B
SQL

CREATE TABLE posts (
id bigint PRIMARY KEY,
url text NOT NULL,
handle text NOT NULL,
name text NOT NULL,
body text NOT NULL,
media text[] NOT NULL,
image text,
alt text
);