crablog/site/migrations/2020-10-21-144212_create_posts/up.sql

9 lines
195 B
MySQL
Raw Permalink Normal View History

2020-10-22 00:17:52 +02:00
-- Your SQL goes here
CREATE TABLE posts (
id INTEGER PRIMARY KEY,
title VARCHAR NOT NULL,
body TEXT NOT NULL,
published BOOLEAN NOT NULL DEFAULT 'f',
publish_date TIMESTAMP NOT NULL
)