Python sqlalchemy.Integer() Examples
The following are 30
code examples of sqlalchemy.Integer().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
sqlalchemy
, or try the search function
.
Example #1
Source File: e4d145e195f4_create_allocation_table.py From zun with Apache License 2.0 | 6 votes |
def upgrade(): op.create_table( 'allocation', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('resource_provider_id', sa.Integer(), nullable=False), sa.Column('consumer_id', sa.String(36), nullable=False), sa.Column('resource_class_id', sa.Integer(), nullable=False), sa.Column('used', sa.Integer(), nullable=False), sa.Column('is_nested', sa.Integer(), nullable=False), sa.Column('blob', zun.db.sqlalchemy.models.JSONEncodedList(), nullable=True), sa.Index('allocation_resource_provider_class_used_idx', 'resource_provider_id', 'resource_class_id', 'used'), sa.Index('allocation_consumer_id_idx', 'consumer_id'), sa.Index('allocation_resource_class_id_idx', 'resource_class_id'), sa.PrimaryKeyConstraint('id'), )
Example #2
Source File: 2020_031416_11a35b448f83_.py From app with MIT License | 6 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('refused_email', sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.Column('full_report_path', sa.String(length=128), nullable=False), sa.Column('path', sa.String(length=128), nullable=False), sa.Column('user_id', sa.Integer(), nullable=False), sa.Column('delete_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='cascade'), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('full_report_path'), sa.UniqueConstraint('path') ) op.add_column('forward_email_log', sa.Column('refused_email_id', sa.Integer(), nullable=True)) op.create_foreign_key(None, 'forward_email_log', 'refused_email', ['refused_email_id'], ['id'], ondelete='SET NULL') # ### end Alembic commands ###
Example #3
Source File: sqlalchemy_base.py From gnocchi with Apache License 2.0 | 6 votes |
def revision(cls): tablename_compact = cls.__tablename__ if tablename_compact.endswith("_history"): tablename_compact = tablename_compact[:-6] return sqlalchemy.Column( sqlalchemy.Integer, sqlalchemy.ForeignKey( 'resource_history.revision', ondelete="CASCADE", name="fk_%s_revision_rh_revision" % tablename_compact, # NOTE(sileht): We use to ensure that postgresql # does not use AccessExclusiveLock on destination table use_alter=True), primary_key=True )
Example #4
Source File: sqlalchemy.py From telethon-session-sqlalchemy with MIT License | 6 votes |
def check_and_upgrade_database(self) -> None: row = self.Version.query.all() version = row[0].version if row else 1 if version == LATEST_VERSION: return self.Version.query.delete() if version == 1: self.UpdateState.__table__.create(self.db_engine) version = 3 elif version == 2: self._add_column(self.UpdateState, Column(type=Integer, name="unread_count")) self.db.add(self.Version(version=version)) self.db.commit()
Example #5
Source File: 20bcb4b2673c_.py From gitlab-tools with GNU General Public License v3.0 | 6 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('task_result', sa.Column('updated', sa.DateTime(), nullable=True), sa.Column('created', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('pull_mirror_id', sa.Integer(), nullable=True), sa.Column('push_mirror_id', sa.Integer(), nullable=True), sa.Column('task_id', sa.String(length=155), nullable=True), sa.Column('status', sa.String(length=50), nullable=True), sa.Column('task_name', sa.String(length=255), nullable=True), sa.Column('invoked_by', sa.Integer(), nullable=True), sa.Column('result', sa.PickleType(), nullable=True), sa.Column('date_done', sa.DateTime(), nullable=True), sa.Column('traceback', sa.Text(), nullable=True), sa.ForeignKeyConstraint(['pull_mirror_id'], ['pull_mirror.id'], ), sa.ForeignKeyConstraint(['push_mirror_id'], ['push_mirror.id'], ), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('task_id') ) op.create_index(op.f('ix_task_result_pull_mirror_id'), 'task_result', ['pull_mirror_id'], unique=False) op.create_index(op.f('ix_task_result_push_mirror_id'), 'task_result', ['push_mirror_id'], unique=False) # ### end Alembic commands ###
Example #6
Source File: cf46a28f46bc_add_container_actions_table.py From zun with Apache License 2.0 | 6 votes |
def upgrade(): op.create_table( 'container_actions', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('action', sa.String(length=255), nullable=True), sa.Column('container_uuid', sa.String(length=36), nullable=False), sa.Column('request_id', sa.String(length=255), nullable=True), sa.Column('user_id', sa.String(length=255), nullable=True), sa.Column('project_id', sa.String(length=255), nullable=True), sa.Column('start_time', sa.DateTime(), nullable=True), sa.Column('finish_time', sa.DateTime(), nullable=True), sa.Column('message', sa.String(length=255), nullable=True), sa.Index('container_uuid_idx', 'container_uuid'), sa.Index('request_id_idx', 'request_id'), sa.ForeignKeyConstraint(['container_uuid'], ['container.uuid'], ), sa.PrimaryKeyConstraint('id') )
Example #7
Source File: 33cdd98bb9b2_split_volume_mapping_table.py From zun with Apache License 2.0 | 6 votes |
def create_volume_table(): op.create_table( 'volume', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('uuid', sa.String(36), nullable=False), sa.Column('project_id', sa.String(length=255), nullable=True), sa.Column('user_id', sa.String(length=255), nullable=True), sa.Column('cinder_volume_id', sa.String(36), nullable=True), sa.Column('volume_provider', sa.String(36), nullable=False), sa.Column('connection_info', MediumText(), nullable=True), sa.Column('host', sa.String(length=255), nullable=True), sa.Column('auto_remove', sa.Boolean(), default=False, nullable=True), sa.Column('contents', MediumText(), nullable=True), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('uuid', name='uniq_volume0uuid'), )
Example #8
Source File: a251f1f61217_create_capsule_table.py From zun with Apache License 2.0 | 6 votes |
def upgrade(): op.create_table( 'capsule', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('capsule_version', sa.String(length=255), nullable=True), sa.Column('kind', sa.String(length=36), nullable=True), sa.Column('project_id', sa.String(length=255), nullable=True), sa.Column('user_id', sa.String(length=255), nullable=True), sa.Column('restart_policy', sa.String(length=255), nullable=True), sa.Column('host_selector', sa.String(length=255), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('uuid', sa.String(length=36), nullable=False), sa.Column('status', sa.String(length=255), nullable=True), sa.Column('status_reason', sa.Text(), nullable=True), sa.Column('message', models.JSONEncodedDict(), nullable=True), sa.Column('spec', models.JSONEncodedDict(), nullable=True), sa.Column('cpu', sa.Float(), nullable=True), sa.Column('memory', sa.String(length=255), nullable=True), sa.Column('meta_name', sa.String(length=255), nullable=True), sa.Column('meta_labels', models.JSONEncodedList(), nullable=True), sa.Column('containers_uuids', models.JSONEncodedList(), nullable=True), sa.PrimaryKeyConstraint('id'), )
Example #9
Source File: d73b72ab7cc6_add_container_type_to_container.py From zun with Apache License 2.0 | 6 votes |
def upgrade(): op.add_column('container', sa.Column('container_type', sa.Integer(), index=True, default=consts.TYPE_CONTAINER, server_default=str(consts.TYPE_CONTAINER)))
Example #10
Source File: 9fe371393a24_create_table_container.py From zun with Apache License 2.0 | 6 votes |
def upgrade(): op.create_table( 'container', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('project_id', sa.String(length=255), nullable=True), sa.Column('user_id', sa.String(length=255), nullable=True), sa.Column('uuid', sa.String(length=36), nullable=True), sa.Column('name', sa.String(length=255), nullable=True), sa.Column('image', sa.String(length=255), nullable=True), sa.Column('command', sa.String(length=255), nullable=True), sa.Column('status', sa.String(length=20), nullable=True), sa.Column('environment', zun.db.sqlalchemy.models.JSONEncodedDict(), nullable=True), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('uuid', name='uniq_container0uuid') )
Example #11
Source File: 2020_051016_bf11ab2f0a7a_.py From app with MIT License | 6 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('alias_mailbox', sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.Column('user_id', sa.Integer(), nullable=False), sa.Column('alias_id', sa.Integer(), nullable=False), sa.Column('mailbox_id', sa.Integer(), nullable=False), sa.ForeignKeyConstraint(['alias_id'], ['alias.id'], ondelete='cascade'), sa.ForeignKeyConstraint(['mailbox_id'], ['mailbox.id'], ondelete='cascade'), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='cascade'), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('alias_id', 'mailbox_id', name='uq_alias_mailbox') ) # ### end Alembic commands ###
Example #12
Source File: b6bfca998431_add_container_actions_events_table.py From zun with Apache License 2.0 | 6 votes |
def upgrade(): op.create_table( 'container_actions_events', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('event', sa.String(length=255), nullable=True), sa.Column('action_id', sa.Integer(), nullable=False), sa.Column('start_time', sa.DateTime(), nullable=True), sa.Column('finish_time', sa.DateTime(), nullable=True), sa.Column('result', sa.String(length=255), nullable=True), sa.Column('traceback', sa.Text(), nullable=True), sa.Column('details', sa.Text(), nullable=True), sa.ForeignKeyConstraint(['action_id'], ['container_actions.id'], ), sa.PrimaryKeyConstraint('id') )
Example #13
Source File: 5e868298fee7_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column('gen_email', sa.Column('custom_domain_id', sa.Integer(), nullable=True)) op.create_foreign_key(None, 'gen_email', 'custom_domain', ['custom_domain_id'], ['id'], ondelete='cascade') # ### end Alembic commands ###
Example #14
Source File: 2020_051710_c31cdf879ee3_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('recovery_code', sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.Column('user_id', sa.Integer(), nullable=False), sa.Column('code', sa.String(length=16), nullable=False), sa.Column('used', sa.Boolean(), nullable=False), sa.Column('used_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='cascade'), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('user_id', 'code', name='uq_recovery_code') ) # ### end Alembic commands ###
Example #15
Source File: 2020_032009_f4b8232fa17e_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column("contact", sa.Column("user_id", sa.Integer(), nullable=True)) op.create_foreign_key( None, "contact", "users", ["user_id"], ["id"], ondelete="cascade" ) op.add_column("email_log", sa.Column("user_id", sa.Integer(), nullable=True)) op.create_foreign_key( None, "email_log", "users", ["user_id"], ["id"], ondelete="cascade" ) op.add_column("file", sa.Column("user_id", sa.Integer(), nullable=True)) op.create_foreign_key( None, "file", "users", ["user_id"], ["id"], ondelete="cascade" ) # ### end Alembic commands ###
Example #16
Source File: 2020_020313_9c976df9b9c4_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('job', sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.Column('name', sa.String(length=128), nullable=False), sa.Column('payload', sa.JSON(), nullable=True), sa.Column('taken', sa.Boolean(), nullable=False), sa.Column('run_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.PrimaryKeyConstraint('id') ) # ### end Alembic commands ###
Example #17
Source File: 2020_022819_5f191273d067_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('account_activation', sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.Column('user_id', sa.Integer(), nullable=False), sa.Column('code', sa.String(length=10), nullable=False), sa.Column('tries', sa.Integer(), nullable=False), sa.CheckConstraint('tries >= 0', name='account_activation_tries_positive'), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='cascade'), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('user_id') ) # ### end Alembic commands ###
Example #18
Source File: 2020_032012_4e4a759ac4b5_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column('alias_used_on', sa.Column('user_id', sa.Integer(), nullable=True)) op.create_foreign_key(None, 'alias_used_on', 'users', ['user_id'], ['id'], ondelete='cascade') # ### end Alembic commands ###
Example #19
Source File: 2020_052319_00532ac6d4bc_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('notification', sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.Column('user_id', sa.Integer(), nullable=False), sa.Column('message', sa.Text(), nullable=False), sa.Column('read', sa.Boolean(), nullable=False), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='cascade'), sa.PrimaryKeyConstraint('id') ) # ### end Alembic commands ###
Example #20
Source File: 2020_052419_10a7947fda6b_.py From app with MIT License | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('mfa_browser', sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), sa.Column('created_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.Column('updated_at', sqlalchemy_utils.types.arrow.ArrowType(), nullable=True), sa.Column('user_id', sa.Integer(), nullable=False), sa.Column('token', sa.String(length=64), nullable=False), sa.Column('expires', sqlalchemy_utils.types.arrow.ArrowType(), nullable=False), sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='cascade'), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('token') ) op.add_column('users', sa.Column('last_otp', sa.String(length=12), nullable=True)) # ### end Alembic commands ###
Example #21
Source File: cad4d8aacceb_.py From gitlab-tools with GNU General Public License v3.0 | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column('pull_mirror', sa.Column('periodic_task_id', sa.Integer(), nullable=True)) op.create_index(op.f('ix_pull_mirror_periodic_task_id'), 'pull_mirror', ['periodic_task_id'], unique=False) op.create_foreign_key(None, 'pull_mirror', 'periodic_task', ['periodic_task_id'], ['id']) # ### end Alembic commands ###
Example #22
Source File: d4841aeeb072_.py From gitlab-tools with GNU General Public License v3.0 | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('celery_taskmeta', sa.Column('id', sa.Integer(), nullable=False), sa.Column('task_id', sa.String(length=155), nullable=True), sa.Column('status', sa.String(length=50), nullable=True), sa.Column('result', sa.PickleType(), nullable=True), sa.Column('date_done', sa.DateTime(), nullable=True), sa.Column('traceback', sa.Text(), nullable=True), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('task_id'), sqlite_autoincrement=True ) op.create_table('celery_tasksetmeta', sa.Column('id', sa.Integer(), nullable=False), sa.Column('taskset_id', sa.String(length=155), nullable=True), sa.Column('result', sa.PickleType(), nullable=True), sa.Column('date_done', sa.DateTime(), nullable=True), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('taskset_id'), sqlite_autoincrement=True ) op.add_column('task_result', sa.Column('celery_taskmeta_id', sa.Integer(), nullable=False)) op.create_index(op.f('ix_task_result_celery_taskmeta_id'), 'task_result', ['celery_taskmeta_id'], unique=False) op.drop_constraint('task_result_task_id_key', 'task_result', type_='unique') op.create_foreign_key(None, 'task_result', 'celery_taskmeta', ['celery_taskmeta_id'], ['id']) op.drop_column('task_result', 'result') op.drop_column('task_result', 'status') op.drop_column('task_result', 'date_done') op.drop_column('task_result', 'task_id') op.drop_column('task_result', 'traceback') # ### end Alembic commands ###
Example #23
Source File: 56189bfb2c5f_.py From gitlab-tools with GNU General Public License v3.0 | 5 votes |
def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('fingerprint', sa.Column('updated', sa.DateTime(), nullable=True), sa.Column('created', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('user_id', sa.Integer(), nullable=True), sa.Column('hostname', sa.String(length=255), nullable=True), sa.Column('sha256_fingerprint', sa.String(length=255), nullable=True), sa.Column('hashed_hostname', sa.String(length=255), nullable=True), sa.ForeignKeyConstraint(['user_id'], ['user.id'], ), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('user_id', 'hashed_hostname', name='_user_id_hashed_hostname_uc') ) op.create_index(op.f('ix_fingerprint_hashed_hostname'), 'fingerprint', ['hashed_hostname'], unique=False) op.create_index(op.f('ix_fingerprint_user_id'), 'fingerprint', ['user_id'], unique=False) # ### end Alembic commands ###
Example #24
Source File: 8c3d80e18eb5_add_container_cpus_cpu_used_to_compute_.py From zun with Apache License 2.0 | 5 votes |
def upgrade(): op.add_column('compute_node', sa.Column('cpus', sa.Integer(), nullable=False)) op.add_column('compute_node', sa.Column('cpu_used', sa.Float(), nullable=False))
Example #25
Source File: 33cdd98bb9b2_split_volume_mapping_table.py From zun with Apache License 2.0 | 5 votes |
def update_existing_records(): op.add_column('volume_mapping', sa.Column('volume_id', sa.Integer(), nullable=True)) # perform data migration between tables session = sa.orm.Session(bind=op.get_bind()) with session.begin(subtransactions=True): for row in session.query(VOLUME_MAPPING_TABLE): res = session.execute( VOLUME_TABLE.insert().values( created_at=row.created_at, updated_at=row.updated_at, uuid=row.uuid, project_id=row.project_id, user_id=row.user_id, cinder_volume_id=row.cinder_volume_id, volume_provider=row.volume_provider, connection_info=row.connection_info, host=row.host) ) session.execute( VOLUME_MAPPING_TABLE.update().values( volume_id=res.inserted_primary_key[0]).where( VOLUME_MAPPING_TABLE.c.id == row.id) ) # this commit is necessary to allow further operations session.commit() op.alter_column('volume_mapping', 'volume_id', nullable=False, existing_type=sa.Integer(), existing_nullable=True, existing_server_default=False) # add the constraint now that everything is populated on that table op.create_foreign_key( constraint_name=None, source_table='volume_mapping', referent_table='volume', local_cols=['volume_id'], remote_cols=['id'], ondelete='CASCADE')
Example #26
Source File: d9714eadbdc2_add_disk_to_container.py From zun with Apache License 2.0 | 5 votes |
def upgrade(): with op.batch_alter_table('container', schema=None) as batch_op: batch_op.add_column(sa.Column('disk', sa.Integer(), nullable=True))
Example #27
Source File: a9a92eebd9a8_create_table_zun_service.py From zun with Apache License 2.0 | 5 votes |
def upgrade(): op.create_table( 'zun_service', sa.Column('id', sa.Integer(), nullable=False), sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('report_count', sa.Integer(), nullable=False), sa.Column('host', sa.String(length=255), nullable=True), sa.Column('binary', sa.String(length=255), nullable=True), sa.Column('disabled', sa.Boolean(), nullable=True), sa.Column('disabled_reason', sa.String(length=255), nullable=True), sa.Column('last_seen_up', sa.DateTime(), nullable=True), sa.Column('forced_down', sa.Boolean(), nullable=True), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('host', 'binary', name='uniq_zun_service0host0binary') )
Example #28
Source File: 53a8b515057e_add_memory_info_to_compute_node.py From zun with Apache License 2.0 | 5 votes |
def upgrade(): op.add_column('compute_node', sa.Column('mem_total', sa.Integer(), nullable=False)) op.add_column('compute_node', sa.Column('mem_free', sa.Integer(), nullable=False)) op.add_column('compute_node', sa.Column('mem_available', sa.Integer(), nullable=False))
Example #29
Source File: 5ffc1cabe6b4_add_registry_table.py From zun with Apache License 2.0 | 5 votes |
def upgrade(): op.create_table( 'registry', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('project_id', sa.String(length=255), nullable=True), sa.Column('user_id', sa.String(length=255), nullable=True), sa.Column('uuid', sa.String(length=36), nullable=True), sa.Column('name', sa.String(length=255), nullable=True), sa.Column('domain', sa.String(length=255), nullable=False), sa.Column('username', sa.String(length=255), nullable=True), sa.Column('password', sa.String(length=255), nullable=True), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('uuid', name='uniq_registry0uuid'), mysql_charset='utf8', mysql_engine='InnoDB' )
Example #30
Source File: 10d65e285a59_create_volume_mapping_table.py From zun with Apache License 2.0 | 5 votes |
def upgrade(): op.create_table( 'volume_mapping', sa.Column('created_at', sa.DateTime(), nullable=True), sa.Column('updated_at', sa.DateTime(), nullable=True), sa.Column('id', sa.Integer(), nullable=False), sa.Column('uuid', sa.String(36), nullable=False), sa.Column('project_id', sa.String(length=255), nullable=True), sa.Column('user_id', sa.String(length=255), nullable=True), sa.Column('volume_id', sa.String(36), nullable=False), sa.Column('volume_provider', sa.String(36), nullable=False), sa.Column('container_uuid', sa.String(36), nullable=False), sa.Column('container_path', sa.String(length=255), nullable=True), sa.Column('connection_info', MediumText(), nullable=True), sa.PrimaryKeyConstraint('id'), sa.UniqueConstraint('uuid', name='uniq_volume0uuid'), )