Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 233 Bytes

reference.md

File metadata and controls

11 lines (7 loc) · 233 Bytes

CREATE TABLE users ( id varchar NOT NULL, name varchar NOT NULL, created_at timestamp with time zone DEFAULT (now() at time zone 'utc'), );

alter table users ADD COLUMN bio varchar;

ALTER TABLE users DROP COLUMN bio;