pre fix general bigints

pull/4/head
Jose Vera 2022-03-02 21:39:58 -05:00
parent d7f88fe242
commit 673d40680a
3 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ export default (sequelize) => {
}, },
created_at: { created_at: {
allowNull: true, allowNull: true,
type: DataTypes.INTEGER, type: DataTypes.BIGINT,
}, },
dongle_id: { dongle_id: {
allowNull: true, allowNull: true,

View File

@ -30,7 +30,7 @@ export default (sequelize) => {
}, },
created_at: { created_at: {
allowNull: true, allowNull: true,
type: DataTypes.INTEGER, type: DataTypes.BIGINT,
}, },
}, { }, {

View File

@ -44,11 +44,11 @@ export default (sequelize) => {
}, },
created: { created: {
allowNull: true, allowNull: true,
type: DataTypes.INTEGER, type: DataTypes.BIGINT,
}, },
last_upload: { last_upload: {
allowNull: true, allowNull: true,
type: DataTypes.INTEGER, type: DataTypes.BIGINT,
}, },
is_preserved: { is_preserved: {
allowNull: true, allowNull: true,
@ -60,7 +60,7 @@ export default (sequelize) => {
}, },
drive_date: { drive_date: {
allowNull: true, allowNull: true,
type: DataTypes.INTEGER, type: DataTypes.BIGINT,
}, },
is_physically_removed: { is_physically_removed: {
allowNull: true, allowNull: true,