crablog/migrations/2018-09-13-162215_create_posts/up.sql

7 lines
161 B
MySQL
Raw Normal View History

2018-09-13 20:35:12 +04:00
-- Your SQL goes here
2018-10-23 10:18:56 +04:00
CREATE TABLE articles (
2018-09-13 20:35:12 +04:00
id SERIAL PRIMARY KEY,
title VARCHAR NOT NULL,
body TEXT NOT NULL,
published BOOLEAN NOT NULL DEFAULT 'f'
)