How to use the UUIDV4 function from sequelize

Find comprehensive JavaScript sequelize.UUIDV4 code examples handpicked from public code repositorys.

28
29
30
31
32
33
34
35
36
37
Users.init({
        id: {
                allowNull: false,
                primaryKey: true,
                type: Sequelize.UUID,
                defaultValue: Sequelize.UUIDV4
        },   
    email: {
        type: Sequelize.TEXT,
        allowNull: false,
fork icon41
star icon59
watch icon1

+ 5 other calls in file

48
49
50
51
52
53
54
55
56
57
exports._DATEONLY  = Sequelize.DATEONLY;
exports._TIME      = Sequelize.TIME;
exports._NOW       = Sequelize.NOW;
exports._UUID      = Sequelize.UUID;
exports._UUIDV1    = Sequelize.UUIDV1;
exports._UUIDV4    = Sequelize.UUIDV4;
exports._HSTORE    = Sequelize.HSTORE;
exports._JSON      = Sequelize.JSON;
exports._JSONB     = Sequelize.JSONB;
exports._ARRAY     = Sequelize.ARRAY;
fork icon10
star icon15
watch icon25

+ 9 other calls in file