mirror of
https://github.com/ProudMuBai/GoFilm.git
synced 2026-02-03 22:44:47 +08:00
18 lines
403 B
Go
18 lines
403 B
Go
package SystemInit
|
|
|
|
import "server/model/system"
|
|
|
|
// TableInIt 初始化 mysql 数据库相关数据
|
|
func TableInIt() {
|
|
// 创建 User Table
|
|
system.CreateUserTable()
|
|
// 初始化管理员账户
|
|
system.InitAdminAccount()
|
|
// 创建 Search Table
|
|
system.CreateSearchTable()
|
|
// 创建图片信息管理表
|
|
system.CreateFileTable()
|
|
// 创建采集失效记录表
|
|
system.CreateFailureRecordTable()
|
|
}
|