golang-server-template/migrations/000001_create_movies_table.up.sql

10 lines
309 B
SQL

CREATE EXTENSION IF NOT EXISTS citext;
CREATE TABLE IF NOT EXISTS movies (
id bigserial PRIMARY KEY,
created_at timestamp(0) with time zone NOT NULL DEFAULT NOW(),
title text NOT NULL,
year integer NOT NULL,
runtime integer NOT NULL,
genres text[] NOT NULL,
version integer NOT NULL DEFAULT 1
);