login-template/db/diesel/migrations/up.sql

7 lines
139 B
MySQL
Raw Normal View History

2024-01-16 12:03:26 -08:00
CREATE TABLE posts (
id SERIAL PRIMARY KEY,
title VARCHAR NOT NULL,
body TEXT NOT NULL,
published BOOLEAN NOT NULL DEFAULT FALSE
)