简体   繁体   English

主键列在sqlalchemy中不会自动增加(IntegrityError)

[英]primary key column isn't autoincrmenting in sqlalchemy (IntegrityError)

I have an sqlalchemy model and a method to add a few elements to a table. 我有一个sqlalchemy模型和一种向表中添加一些元素的方法。 Here is the model and function: 这是模型和功能:

class Roles(alchemyDB.Model):
    __tablename__ = 'roles'
    id = alchemyDB.Column(alchemyDB.Integer, primary_key = True)
    name = alchemyDB.Column(alchemyDB.String(64), unique = True)
    default = alchemyDB.Column(alchemyDB.Boolean, default = False, index = True)
    permissions = alchemyDB.Column(alchemyDB.Integer)
    users = alchemyDB.relationship('User', backref='role', lazy='dynamic')

    def __repr__(self):
        return '<Role $r>'%self.name

    @staticmethod
    def setRolesInDB(app):
        '''
            sets the basic roles in the database
        '''
        roles = {
                 'User' : (Permission.WRITE_ARTICLES, True),
                 'Moderator' : (Permission.WRITE_ARTICLES | Permission.MODERATE_COMMENTS, False),
                 'Administrator' : (0xff, False)
                 }
        with app.app_context():
            with alchemyDB.session.no_autoflush:
                for r in roles :
                    role = Roles.query.filter_by(name = r).first()            
                    if role == None :
                        role = Roles(name = r)
                    role.permissions = roles[r][0]
                    role.default = roles[r][1]
                    alchemyDB.session.add(role)
                alchemyDB.session.commit()


class User(UserMixin, alchemyDB.Model):
    __tablename__ = 'users'
    id = alchemyDB.Column(alchemyDB.Integer, primary_key = True)
    user_email = alchemyDB.Column(alchemyDB.String(64), unique = True, index = True)
    user_name = alchemyDB.Column(alchemyDB.String(64), unique = True, index = True)
    user_pass = alchemyDB.Column(alchemyDB.String(128))
    role_id = alchemyDB.Column(alchemyDB.Integer, alchemyDB.ForeignKey('roles.id'))
    communities = alchemyDB.Column(alchemyDB.String(64))
    articles_compared = alchemyDB.Column(alchemyDB.String(64))
    date_joined = alchemyDB.Column(alchemyDB.DateTime)
    user_tags =  alchemyDB.relationship('UsersAppliedTags',
                                        foreign_keys = [UsersAppliedTags.user_id],
                                        backref = alchemyDB.backref('users_who_have_used_this_tag_for_this_article', lazy ='joined'),
                                        lazy = 'dynamic',
                                        cascade = 'all, delete-orphan')

Here is how I call the function : 这是我所谓的函​​数:

alchemyDB.init_app(app)
with app.app_context():
        # Extensions like Flask-SQLAlchemy now know what the "current" app
        # is while within this block. Therefore, you can now run........
    alchemyDB.create_all()
Roles.setRolesInDB(app)

I get the following error : 我收到以下错误:

 cursor.execute(statement, parameters) 

sqlalchemy.exc.IntegrityError: (IntegrityError) roles.id may not be NULL u'INSER T INTO roles (name, "default", permissions) VALUES (?, ?, ?)' ('Moderator', 0, 1 2) sqlalchemy.exc.IntegrityError:(IntegrityError)roles.id不能为NULL u'INSER T INTO角色(名称,“默认”,权限)VALUES(?,?,?)'('主持人',0,1 2)

This table is just like any other and I have never had a problem where the primary key suddenly wasn't autoincremented. 该表与其他任何表一样,并且我从来没有遇到主键突然没有自动递增的问题。 What might be going wrong here? 这里可能出什么问题了?

As per a request, here is what the table looks like in the database: 根据请求,数据库中的表如下所示:

sqlite> pragma table_info(Roles);
0|id|VARCHAR(64)|1||1
1|name|VARCHAR(64)|0||0
2|default|BOOLEAN|0||0
3|permissions|INTEGER|0||0

id列的类型更改为INTEGER并使其autoincrement

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM