mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-07-27 21:29:09 +02:00
7 lines
220 B
SQL
7 lines
220 B
SQL
CREATE TABLE TableName (
|
|
Attribute integer,
|
|
OtherAttribute varchar (30),
|
|
NextAttribute character (2) default "AP", -- default value, if unset on insert
|
|
PRIMARY KEY (Attribute) -- primary key, as in RA
|
|
);
|