Answers for "column cannot be cast automatically to type bigint postgres sequelize"

0

column cannot be cast automatically to type bigint postgres sequelize

queryInterface.changeColumn('table', 'column', {
        type: 'INTEGER USING CAST("column" as INTEGER)'
});
Posted by: Guest on May-25-2021
0

column cannot be cast automatically to type bigint postgres sequelize

queryInterface.changeColumn('table', 'column', {
        type: 'INTEGER USING CAST("column" as INTEGER)'
});
Posted by: Guest on May-25-2021

Code answers related to "column cannot be cast automatically to type bigint postgres sequelize"

Code answers related to "Javascript"

Browse Popular Code Answers by Language