Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
FilmFlix/example.sql
Ethanell 5d6642e696 Setup Film model, manager and controller
Rest API with GET, POST, PUT, DELETE
2022-03-22 17:40:24 +01:00

10 lines
234 B
SQL

create table FILM
(
id int auto_increment
primary key,
name varchar(248) not null,
description text not null,
date datetime not null,
duration float not null
);