我正在使用alembic进行简单的迁移(向我的sqlite3数据库中添加了3列)。
def upgrade():
### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('project', schema=None) as batch_op:
batch_op.add_column(sa.Column('pwd_expiry', sa.Integer(), nullable=True))
batch_op.add_column(sa.Column('pwd_expiry_warning', sa.Integer(), nullable=True))
我想为config中的那些列提供默认值。我只希望在迁移过程中添加这些默认值。我不想在迁移后即在INSERT或其他任何东西上添加这些默认值。只是在迁移过程中添加默认值。没有未来的影响。
编辑: 更具体地说,我想向特定表中的所有行添加相同的值。