mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-20 12:49:32 +00:00
Merge branch 'master' of https://github.com/ertprs/whaticket
This commit is contained in:
@@ -2,7 +2,7 @@ import { QueryInterface, DataTypes } from "sequelize";
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
up: (queryInterface: QueryInterface) => {
|
up: (queryInterface: QueryInterface) => {
|
||||||
return queryInterface.createTable("quickAnswers", {
|
return queryInterface.createTable("QuickAnswers", {
|
||||||
id: {
|
id: {
|
||||||
type: DataTypes.INTEGER,
|
type: DataTypes.INTEGER,
|
||||||
autoIncrement: true,
|
autoIncrement: true,
|
||||||
@@ -29,6 +29,6 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
down: (queryInterface: QueryInterface) => {
|
down: (queryInterface: QueryInterface) => {
|
||||||
return queryInterface.dropTable("quickAnswers");
|
return queryInterface.dropTable("QuickAnswers");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user