This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP schema IF EXISTS anime cascade; --USE ONLY IN PRE-PROD ENVIRONMENTS | |
DROP schema IF EXISTS audio cascade; --USE ONLY IN PRE-PROD ENVIRONMENTS | |
DROP schema IF EXISTS persons cascade; --USE ONLY IN PRE-PROD ENVIRONMENTS | |
DROP schema IF EXISTS students cascade; --USE ONLY IN PRE-PROD ENVIRONMENTS | |
create schema anime; | |
create table anime.anime | |
( | |
id serial not null, |