You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
);
|
|
|