sroehrl/node-express-typescript

View on GitHub
src/models/user/migration.js

Summary

Maintainability
A
0 mins
Test Coverage
const base = {
    user:{
        id: 'binary(16) NOT NULL PRIMARY KEY',
        userName: 'varchar(40) DEFAULT NULL UNIQUE',
        password: 'varchar(255) DEFAULT NULL',
        createdAt: 'timestamp NULL DEFAULT current_timestamp()',
        deletedAt: 'datetime DEFAULT NULL'
    },
    user_role:{}
}

module.exports = {
    base,
    migrations: []
}