remove schema of placeholder
This commit is contained in:
parent
3af2645706
commit
1eed2f5773
|
@ -48,9 +48,10 @@ def upgrade():
|
||||||
sa.Column('device_id', sa.BigInteger(), nullable=False),
|
sa.Column('device_id', sa.BigInteger(), nullable=False),
|
||||||
sa.ForeignKeyConstraint(['device_id'], [f'{get_inv()}.device.id']),
|
sa.ForeignKeyConstraint(['device_id'], [f'{get_inv()}.device.id']),
|
||||||
sa.PrimaryKeyConstraint('id'),
|
sa.PrimaryKeyConstraint('id'),
|
||||||
schema=f'{get_inv()}',
|
|
||||||
)
|
)
|
||||||
|
op.execute("CREATE SEQUENCE placeholder_seq START 1;")
|
||||||
|
|
||||||
|
|
||||||
def downgrade():
|
def downgrade():
|
||||||
op.drop_table('placeholder', schema=f'{get_inv()}')
|
op.drop_table('placeholder')
|
||||||
|
op.execute("DROP SEQUENCE placeholder_seq;")
|
||||||
|
|
|
@ -827,6 +827,7 @@ class DisplayMixin:
|
||||||
|
|
||||||
|
|
||||||
class Placeholder(Thing):
|
class Placeholder(Thing):
|
||||||
|
__table_args__ = {'schema': ''}
|
||||||
id = Column(BigInteger, Sequence('placeholder_seq'), primary_key=True)
|
id = Column(BigInteger, Sequence('placeholder_seq'), primary_key=True)
|
||||||
pallet = Column(Unicode(), nullable=True)
|
pallet = Column(Unicode(), nullable=True)
|
||||||
phid = Column(Unicode(), nullable=False, default=create_phid)
|
phid = Column(Unicode(), nullable=False, default=create_phid)
|
||||||
|
|
Reference in New Issue