koishi-plugin-bilibili-notify
Version:
Koishi bilibili notify plugin
26 lines (25 loc) • 665 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.name = void 0;
exports.apply = apply;
exports.name = 'Database';
function apply(ctx) {
// 新增Bilibili表
ctx.model.extend('bilibili', {
id: 'unsigned',
uid: 'string',
room_id: 'string',
dynamic: 'unsigned',
live: 'unsigned',
target: 'string',
platform: 'string',
time: 'timestamp'
}, { autoInc: true });
// 新增LoginBili表
ctx.model.extend('loginBili', {
id: 'unsigned',
bili_cookies: 'text',
bili_refresh_token: 'text',
dynamic_group_id: 'string'
});
}