6 lines
91 B
SQL
6 lines
91 B
SQL
CREATE TABLE widgets (
|
|
id serial PRIMARY KEY,
|
|
color text NOT NULL,
|
|
price integer
|
|
);
|
|
|