-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding owner to sqlatables and changing some of the formatting using …
…DataTables
- Loading branch information
Michelle Thomas
committed
Dec 16, 2015
1 parent
30df7be
commit 6155ff8
Showing
5 changed files
with
64 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
"""user_id | ||
Revision ID: 2591d77e9831 | ||
Revises: 12d55656cbca | ||
Create Date: 2015-12-15 17:02:45.128709 | ||
""" | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '2591d77e9831' | ||
down_revision = '12d55656cbca' | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
def upgrade(): | ||
with op.batch_alter_table('tables') as batch_op: | ||
batch_op.add_column(sa.Column('user_id', sa.Integer())) | ||
batch_op.create_foreign_key('user_id', 'ab_user', ['user_id'], ['id']) | ||
|
||
|
||
def downgrade(): | ||
with op.batch_alter_table('tables'): | ||
op.drop_constraint(None, 'tables', type_='foreignkey') | ||
op.drop_column('tables', 'user_id') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters