subject.model.js 676 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Sequelize from "sequelize";

const { DataTypes } = Sequelize;

const SubjectModel = (sequelize) => {
  const Subject = sequelize.define(
    "subject",
    {
      id: {
        type: DataTypes.UUID, 
        defaultValue: DataTypes.UUIDV4,
        primaryKey: true
      },
      name: {
Kim, Subin's avatar
plan    
Kim, Subin committed
15
16
        type: DataTypes.STRING,
        allowNull: false
17
18
      },
      prof: {
Kim, Subin's avatar
plan    
Kim, Subin committed
19
20
        type: DataTypes.STRING,
        defaultValue: ""
21
22
      },
      room: {
Kim, Subin's avatar
plan    
Kim, Subin committed
23
24
        type: DataTypes.STRING,
        defaultValue: ""
25
26
27
28
29
30
31
32
33
34
35
36
      }
    },
    {
      timestamps: true,
      freezeTableName: true,
      tableName: "subjects",
    }
  );
  return Subject
};

export default SubjectModel;