gpt4 book ai didi

javascript - 如何使用 Knex 创建 TINYINT 列?

转载 作者:行者123 更新时间:2023-12-03 07:20:11 25 4
gpt4 key购买 nike

knex documentation ,我只看到创建整数或大整数的选项。
例如,假设我有一个 movies带有 rating 的表用于存储电影 5 星评级的列:

// Migration script

exports.up = knex => {
return knex.schema
.createTable('movies', table => {
table.uuid('id').primary()
...
table.integer('rating') // <-- I want this to be a TINYINT
})
}
有没有办法在不诉诸原始 SQL 查询的情况下做到这一点?

最佳答案

虽然@Jumshud 的答案是一个很好的替代方法,但这里是简短的答案:

table.tinyint('rating');
我深入研究了 Knex 0.21.6 代码,发现了一个可用方法列表,这些方法甚至没有记录在他们的网站上。在 TableBuilder 文件中 knex/lib/schema/tablebuilder.js这是注入(inject)伪经典模式原型(prototype)的方法列表 TableBuilder .为每个 columnTypes 创建方法值(value)观:
// For each of the column methods, create a new "ColumnBuilder" interface,
// push it onto the "allStatements" stack, and then return the interface,
// with which we can add indexes, etc.
each(columnTypes, function (type) {
TableBuilder.prototype[type] = function () {
const args = toArray(arguments);
const builder = this.client.columnBuilder(this, type, args);
this._statements.push({
grouping: 'columns',
builder,
});
return builder;
};
});
columnTypes 的值数组是:
// Each of the column types that we can add, we create a new ColumnBuilder
// instance and push it onto the statements array.
const columnTypes = [
// Numeric
'tinyint',
'smallint',
'mediumint',
'int',
'bigint',
'decimal',
'float',
'double',
'real',
'bit',
'boolean',
'serial',

// Date / Time
'date',
'datetime',
'timestamp',
'time',
'year',

// String
'char',
'varchar',
'tinytext',
'tinyText',
'text',
'mediumtext',
'mediumText',
'longtext',
'longText',
'binary',
'varbinary',
'tinyblob',
'tinyBlob',
'mediumblob',
'mediumBlob',
'blob',
'longblob',
'longBlob',
'enum',
'set',

// Increments, Aliases, and Additional
'bool',
'dateTime',
'increments',
'bigincrements',
'bigIncrements',
'integer',
'biginteger',
'bigInteger',
'string',
'json',
'jsonb',
'uuid',
'enu',
'specificType',
];
该数组中的每个值都将转换为模式表构建器中的方法。

关于javascript - 如何使用 Knex 创建 TINYINT 列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62904213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com