POC-golang-postgres-docker/db_dump

5 lines
189 B
Plaintext
Raw Normal View History

CREATE TABLE users ( user_id serial PRIMARY KEY, title VARCHAR ( 50 ) UNIQUE NOT NULL, created_on TIMESTAMP NOT NULL);
INSERT INTO users (title,created_on) VALUES('hemani','2013-06-01');