-- migrations/000001_init_schema.down.sql -- 回滚初始化 Schema -- 删除表和索引 -- 删除订单表 DROP TABLE IF EXISTS tb_order; -- 删除用户表 DROP TABLE IF EXISTS tb_user;