todo.model.js 611 Bytes
Newer Older
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
import Sequelize from "sequelize";

const { DataTypes } = Sequelize;

const TodoModel = (sequelize) => {
  const Todo = sequelize.define(
    "todo",
    {
      id: {
        type: DataTypes.UUID, 
        defaultValue: DataTypes.UUIDV4,
        primaryKey: true
      },
      title: {
        type: DataTypes.STRING
      },
      date: {
        type: DataTypes.STRING
      },
      done: {
        type: DataTypes.BOOLEAN,
        defaultValue: false
      }
    },
    {
      timestamps: true,
      freezeTableName: true,
      tableName: "todos",
    }
  );
  return Todo
};

export default TodoModel;