UNPKG

@agentscope/studio

Version:

AgentScope Studio is a powerful local monitoring and visualization tool designed to provide real-time insights into your system's performance and behavior.

20 lines (19 loc) 718 B
"use strict"; /** * 迁移管理中心 * * 所有迁移文件在这里统一管理和导出 * 添加新迁移时,按时间戳顺序添加到数组中 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.migrations = void 0; const _1730000000000_AddMessageReplyForeignKey_1 = require("./1730000000000-AddMessageReplyForeignKey"); const _1740000000000_MigrateSpanTable_1 = require("./1740000000000-MigrateSpanTable"); /** * 所有迁移列表(按时间戳顺序) */ exports.migrations = [ _1730000000000_AddMessageReplyForeignKey_1.AddMessageReplyForeignKey1730000000000, _1740000000000_MigrateSpanTable_1.MigrateSpanTable1740000000000, // 未来的迁移在这里添加 ];