本文整理匯總了TypeScript中sequelize/lib/query-interface.QueryInterface類的典型用法代碼示例。如果您正苦於以下問題:TypeScript QueryInterface類的具體用法?TypeScript QueryInterface怎麽用?TypeScript QueryInterface使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了QueryInterface類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
import {DataTypes} from 'sequelize';
import {QueryInterface} from 'sequelize/lib/query-interface';
let queryInterface: QueryInterface;
queryInterface.createTable(
'nameOfTheNewTable',
{
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true
},
createdAt: {
type: DataTypes.DATE
},
updatedAt: {
type: DataTypes.DATE
},
attr1: DataTypes.STRING,
attr2: DataTypes.INTEGER,
attr3: {
type: DataTypes.BOOLEAN,
defaultValue: false,
allowNull: false
},
//foreign key usage
attr4: {
type: DataTypes.INTEGER,
references: {
model: 'another_table_name',
示例2:
queryInterface.sequelize.transaction(trx => queryInterface.addConstraint('Person', ['firstname', 'lastname'], {
name: 'firstnamexlastname',
type: 'unique',
transaction: trx,
}))