test
This commit is contained in:
parent
7e259b409b
commit
520f0cea14
3
sql.go
3
sql.go
@ -154,7 +154,6 @@ func initDB() {
|
||||
,status VARCHAR(32)
|
||||
,end DATETIME NOT NULL
|
||||
,FOREIGN KEY (obj_id) REFERENCES obj(id) ON DELETE CASCADE
|
||||
,UNIQUE KEY (lot_id)
|
||||
) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci;`)
|
||||
failOnError(err, "initDB : create table obj_msg_auction_announce")
|
||||
|
||||
@ -192,7 +191,7 @@ func initDB() {
|
||||
,FOREIGN KEY (obj_id) REFERENCES obj(id) ON DELETE CASCADE
|
||||
,UNIQUE KEY (intl_id)
|
||||
) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci;`)
|
||||
failOnError(err, "initDB : create table obj_auction_announce")
|
||||
failOnError(err, "initDB : create table obj_item")
|
||||
|
||||
_, err = db.Exec(`CREATE TABLE obj_job (
|
||||
obj_id BIGINT UNSIGNED NOT NULL
|
||||
|
Loading…
Reference in New Issue
Block a user