- fix sql bug InitPlace

This commit is contained in:
gazebo
2019-05-12 21:59:41 +08:00
parent 4040aa43bd
commit 4b7e387f23

View File

@@ -75,7 +75,7 @@ func InitPlace(ctx *jxcontext.Context) (err error) {
if _, err = dao.ExecuteSQL(db, `
DELETE t1
FROM place t1
WHERE code > 9000000;
WHERE code < 9000000;
`); err != nil {
return err
}