# Conflicts:
#	src/types/database.d.ts
This commit is contained in:
zhishi 2026-03-25 17:47:25 +08:00
commit 814a2afebe

View File

@ -1,4 +1,4 @@
// @db-hash a3673cf3a1d1c9cbf22ae3cfff196a71
// @db-hash 62a748aea9d1ecee865c4cf05add24fc
//该文件由脚本自动生成,请勿手动修改
export interface memories {
@ -53,7 +53,7 @@ export interface o_assets {
}
export interface o_assets2Storyboard {
'assetId'?: number;
'storyboardId'?: number;
'storyboardId': number;
}
export interface o_event {
'createTime'?: number | null;
@ -149,6 +149,11 @@ export interface o_storyboard {
'state'?: string | null;
'title'?: string | null;
}
export interface o_storyboardFlow {
'flowData': string;
'id'?: number;
'storyboardId': number;
}
export interface o_tasks {
'describe'?: string | null;
'id'?: number;
@ -219,6 +224,7 @@ export interface DB {
"o_scriptAssets": o_scriptAssets;
"o_setting": o_setting;
"o_storyboard": o_storyboard;
"o_storyboardFlow": o_storyboardFlow;
"o_tasks": o_tasks;
"o_user": o_user;
"o_vendorConfig": o_vendorConfig;