cinema.model.js 817 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import Sequelize from "sequelize";

const { DataTypes } = Sequelize;

const CinemaModel = (sequelize) => {
    const Cinema = sequelize.define(
        "cinema",
        {
            id: {
                type: DataTypes.INTEGER,
                primaryKey: true,
                autoIncrement: true,
            },
            cinemaName: {
                type: DataTypes.STRING,
            },
            transportation: {
                type: DataTypes.TEXT
            },
            parking: {
                type: DataTypes.TEXT
            },
            address: {
                type: DataTypes.STRING
            }
        },
        {
            timestamps: true,
            freezeTableName: true,
            tableName: "cinemas"
        }
    );
    return Cinema;
};

export default CinemaModel;