在将其标记为重复之前:
我确实查看了这个问题/答案,并且确实按照它的建议进行了操作,但是当我添加此代码时:
permslookup = sa.Table('permslookup',
sa.Column('perms_lookup_id', primary_key=True),
sa.Column('name', sa.Unicode(40), index=True),
sa.Column('description', sa.Text),
sa.Column('value', sa.Numeric(10, 2)),
sa.Column('ttype', sa.PickleType(), index=True),
sa.Column('permission', sa.Unicode(40), index=True),
sa.Column('options', sa.PickleType())
)
然后运行alembic upgrade head
,我得到以下错误:
AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema'
当我检查完整的堆栈跟踪时,我注意到这是导致错误的原因:
sa.Column('options', sa.PickleType())
这是上述代码的最后一行......我该如何解决这个问题?我不知道如何解决它......任何形式的帮助将不胜感激。
这是我要插入的数据:
op.bulk_insert('permslookup',
[
{
'id': 1,
'name': 'accounts',
'description': """ Have permission to do all transactions """,
'value': 1,
'ttype': ['cash', 'loan', 'mgmt', 'deposit', 'adjustments'],
'permission': 'accounts',
'options': None
},
{
'id': 2,
'name': 'agent_manage',
'description': """ Have permission to do cash, cash, loan and Management Discretion transactions """,
'value': 2,
'ttype': ['cash', 'loan', 'mgmt'],
'permission': 'agent_manage',
'options': None
},
{
'id': 3,
'name': 'corrections',
'description': """ Have permission to do cash, loan and adjustments transactions """,
'value': 3,
'ttype': ['cash', 'loan', 'adjustments'],
'permission': 'corrections',
'options': None
},
{
'id': 4,
'name': 'cashup',
'description': """ Have permission to do cash and loan transactions """,
'value': 4,
'ttype': ['cash', 'loan'],
'permission': 'cashup',
'options': None
},
]
)
我尝试运行时得到的原始错误bulk_insert
是:
AttributeError: 'str' object has no attribute '_autoincrement_column'