rs-basic/crates/diesel-demo/migrations/2024-06-27-090844_create_table/up.sql
Christoph J. Scherr ce71b2ceec
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
reorganize the workspace
2025-03-14 22:24:47 +01:00

8 lines
172 B
SQL

-- Your SQL goes here
CREATE TABLE `posts`(
`id` INTEGER NOT NULL PRIMARY KEY,
`title` TEXT NOT NULL,
`body` TEXT NOT NULL,
`published` BOOL NOT NULL DEFAULT false
);