Archived
4
2
This repository has been archived on 2024-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
hpr_generator/_sql/sqlite/Create_Table_hosts.sql

13 lines
284 B
SQL

-- hosts definition
CREATE TABLE hosts (
hostid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
host TEXT NOT NULL,
email TEXT NOT NULL,
profile TEXT NOT NULL,
license VARCHAR(11) DEFAULT 'CC-BY-SA',
local_image INTEGER DEFAULT 0 NOT NULL,
gpg TEXT NOT NULL,
espeak_name TEXT
);