Skip to content

Commit

Permalink
Merge "Fix enum definition in FWaaS DB schema migration"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Aug 3, 2013
2 parents 04d9704 + ac1c900 commit bcb279e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ def upgrade(active_plugin=None, options=None):
sa.Column('source_port_range_max', sa.Integer(), nullable=True),
sa.Column('destination_port_range_min', sa.Integer(), nullable=True),
sa.Column('destination_port_range_max', sa.Integer(), nullable=True),
sa.Column('action', sa.Enum(), nullable=True),
sa.Column('action',
sa.Enum('allow', 'deny', name='firewallrules_action'),
nullable=True),
sa.Column('enabled', sa.Boolean(), autoincrement=False,
nullable=True),
sa.Column('position', sa.Integer(), autoincrement=False,
Expand Down

0 comments on commit bcb279e

Please sign in to comment.