chore: 为 video sources 添加 enabled 字段 (#362)

This commit is contained in:
ᴀᴍᴛᴏᴀᴇʀ
2025-06-13 12:00:10 +08:00
committed by GitHub
parent a41efdbe78
commit a46c2572b1
6 changed files with 107 additions and 0 deletions
+2
View File
@@ -5,6 +5,7 @@ mod m20240505_130850_add_collection;
mod m20240709_130914_watch_later;
mod m20240724_161008_submission;
mod m20250122_062926_add_latest_row_at;
mod m20250612_090826_add_enabled;
pub struct Migrator;
@@ -17,6 +18,7 @@ impl MigratorTrait for Migrator {
Box::new(m20240709_130914_watch_later::Migration),
Box::new(m20240724_161008_submission::Migration),
Box::new(m20250122_062926_add_latest_row_at::Migration),
Box::new(m20250612_090826_add_enabled::Migration),
]
}
}