Skip to content

schemas

choisungwook edited this page May 7, 2022 · 1 revision

table

# project
CREATE TABLE projects (
	id serial PRIMARY KEY,
	name VARCHAR ( 50 ) UNIQUE NOT NULL,
    description VARCHAR ( 255 ),
	created_at TIMESTAMP NOT NULL,
    updated_at TIMESTAMP NOT NULL
);

postgresql

  • DDL
  • DML
  • schemas
Clone this wiki locally