test
This commit is contained in:
parent
0372c0cc2d
commit
1ee52af4c8
2
sql.go
2
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
|
||||
,KEY (lot_id)
|
||||
) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci;`)
|
||||
failOnError(err, "initDB : create table obj_msg_auction_announce")
|
||||
|
||||
@ -162,7 +161,6 @@ func initDB() {
|
||||
obj_id BIGINT UNSIGNED NOT NULL
|
||||
,lot_id BIGINT UNSIGNED NOT NULL
|
||||
,FOREIGN KEY (obj_id) REFERENCES obj(id) ON DELETE CASCADE
|
||||
,KEY (lot_id)
|
||||
) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci;`)
|
||||
failOnError(err, "initDB : create table obj_msg_auction_upd_req")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user