9 lines
284 B
SQL
9 lines
284 B
SQL
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
|
|
); |