7 lines
95 B
Plaintext
7 lines
95 B
Plaintext
|
DROP TABLE IF EXISTS User;
|
||
|
|
||
|
CREATE TABLE User(
|
||
|
id SERIAL PRIMARY KEY,
|
||
|
name char(50)
|
||
|
);
|