1
0
mirror of https://gitlab.com/MisterBiggs/diesel_tutorial.git synced 2025-06-15 17:06:40 +00:00
2025-05-09 19:01:08 -06:00

7 lines
160 B
SQL

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