mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-09-10 19:15:25 +02:00
8 lines
273 B
SQL
8 lines
273 B
SQL
CREATE TABLE TableName (
|
|
Attribute integer UNIQUE,
|
|
OtherAttribute varchar(30) NOT NULL, -- Not null
|
|
NextAttribute character(2) default "AP", -- default value, if unset on insert
|
|
PRIMARY KEY (Attribute), -- primary key, as in RA
|
|
CHECK (Attribute > 1)
|
|
);
|