crablog/migrations/2018-09-13-162215_create_posts/up.sql
2018-10-23 14:18:56 +08:00

7 lines
161 B
SQL

-- Your SQL goes here
CREATE TABLE articles (
id SERIAL PRIMARY KEY,
title VARCHAR NOT NULL,
body TEXT NOT NULL,
published BOOLEAN NOT NULL DEFAULT 'f'
)