-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlimBase.sql
20 lines (14 loc) · 1.51 KB
/
AlimBase.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- Insert Certifications
insert into certification (code, name, definition, description) values ('G', 'GENERAL AUDIENCES','All ages admitted.', 'Nothing that would offend parents for viewing by children.');
insert into certification (code, name, definition, description) values ('PG', 'PARENTAL GUIDANCE SUGGESTED', 'Some material may not be suitable for children.', 'Parents urged to give “parental guidance.” May contain some material parents might not like for their young children');
insert into certification (code, name, definition, description) values ('PG-13', 'PARENTS STRONGLY CAUTIONED', 'Some material may be inappropriate for children under 13.', 'Parents are urged to be cautious. Some material may be inappropriate for pre-teenagers.');
insert into certification (code, name, definition, description) values ('R', 'RESTRICTED', 'Under 17 requires accompanying parent or adult guardian.', 'Contains some adult material. Parents are urged to learn more about the film before taking their young children with them.');
insert into certification (code, name, definition, description) values ('NC-17', 'NO ONE 17 AND UNDER ADMITTED', 'No One 17 and Under Admitted.','Clearly adult. Children are not admitted.');
-- Insert Status
insert into status (name) values('Canceled');
insert into status (name) values('In Production');
insert into status (name) values('Planned');
insert into status (name) values('Post Production');
insert into status (name) values('Released');
insert into status (name) values('Rumored');
commit;