forked from Alexey/DAS_2024_1
4 lines
100 B
SQL
4 lines
100 B
SQL
CREATE TABLE IF NOT EXISTS university (
|
|
id SERIAL PRIMARY KEY,
|
|
name VARCHAR(100) NOT NULL
|
|
); |