Files
cromulant/cromulant/schema.sql
Auric Vente 685f5bc686 Mods
2024-07-18 02:14:03 -06:00

22 lines
580 B
SQL

CREATE TABLE IF NOT EXISTS ants (
-- Internal ID of the ant
id INTEGER PRIMARY KEY AUTOINCREMENT,
-- The date when the ant was created
created INTEGER NOT NULL DEFAULT 0,
-- The date when the ant was last changed
updated INTEGER NOT NULL DEFAULT 0,
-- The public name of the ant
name TEXT NOT NULL DEFAULT "",
-- The current text of the ant
status TEXT NOT NULL DEFAULT "",
-- The total number of hits taken
hits INTEGER NOT NULL DEFAULT 0,
-- The total number of triumph achieved
triumph INTEGER NOT NULL DEFAULT 0
);