biter/migrations/20240310230509_first.sql

11 lines
180 B
MySQL
Raw Permalink Normal View History

2024-03-13 03:08:52 +03:00
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
);