当代数据库管理系统课程实验二
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

5 行
154 B

  1. from be.model.postgreSQLORM import Base,engine
  2. def createTable():
  3. # 创建所有继承于Base的类对应的表
  4. Base.metadata.create_all(engine)