mirror of
https://gitlab.com/MisterBiggs/diesel_tutorial.git
synced 2025-06-15 17:06:40 +00:00
7 lines
160 B
SQL
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
|
|
) |