修改表命名

This commit is contained in:
resonate
2022-01-23 14:29:15 +08:00
parent 4eeb2cfec9
commit 56dcc7eff8
13 changed files with 35 additions and 50 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
from common.model import Column, Table, Integer, ForeignKey
role_power = Table(
"admin_role_power",
"sys_role_power",
Column("id", Integer, primary_key=True, autoincrement=True, comment='标识'),
Column("power_id", Integer, ForeignKey("admin_power.id"), comment='用户编号'),
Column("role_id", Integer, ForeignKey("admin_role.id"), comment='角色编号'),