This is the template project that's checked out and configured when you run the bando-up command from ljsthw-bandolier. This is where the code really lives.
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
 
 
 
bandolier-template/migrations/20220426213105_livestream_a...

31 行
976 B

exports.up = async (knex) => {
await knex.schema.alterTable('livestream', (table) => {
table.renameColumn('state', 'state_old');
});
await knex.schema.alterTable('livestream', (table) => {
table.enum('state', ['pending', 'ready', 'live', 'finished', 'archived']).notNull().default('pending');
});
await knex.raw("update livestream set state = state_old where id=id");
await knex.schema.alterTable("livestream", (table) => {
table.dropColumn("state_old");
});
};
exports.down = async (knex) => {
await knex.schema.alterTable('livestream', (table) => {
table.renameColumn('state', 'state_old');
});
await knex.schema.alterTable('livestream', (table) => {
table.enum('state', ['pending', 'live', 'finished', 'archived']).notNull().default('pending');
});
await knex.raw("update livestream set state = state_old where id=id");
await knex.schema.alterTable("livestream", (table) => {
table.dropColumn("state_old");
});
};