mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-29 05:42:35 +00:00
50c9e88cf9
The new examples directory... * Contains a `README.md` explaining each example. * Consolidates examples into more complete chunks. * Is just better. Resolves #1447.
7 lines
162 B
SQL
7 lines
162 B
SQL
CREATE TABLE posts (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
title VARCHAR NOT NULL,
|
|
text VARCHAR NOT NULL,
|
|
published BOOLEAN NOT NULL DEFAULT 0
|
|
);
|