无法在数据库中创建用户:sqlalchemy.exc.InvalidRequestError

时间:2019-09-26 19:45:57

标签: python sqlite flask sqlalchemy

我正在尝试将用户添加到数据库文件,但是在尝试创建User对象时出现以下错误:

  shouldComponentUpdate(nextProps, nextState){
    if (this.state.restoOriginales !== nextState.restoOriginales){
      console.log("NUEVO ITEM", nextState.restoOriginales);
      //put your setState code here with nextState.restoOriginales
    }
    return true;
  }
shouldComponentUpdate() is invoked before 
rendering when new props or state are being received. Defaults to true. 

我在python终端中的步骤(该文件称为索引):

  1. 从索引导入数据库
  2. db.create_all()
  3. 从索引导入用户,文档,患者
  4. user1 =用户(名称=“测试用户”,用户名=“测试”,密码=“ testtest”,角色= 1)
  5. 当我尝试第4步时,出现上述错误。

我在代码中看不到任何问题,因此,我将不胜感激:)

0 个答案:

没有答案