Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test traffic into dev #2249

Merged
merged 2 commits into from
Mar 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def add_repo_clone_data_table_1(upgrade = True):
### I don't think we want repo_id to be unique here. I think we want to have many entries per repo
# op.create_unique_constraint('repo_clone_unique', 'repo_clones_data', ['repo_id'])


# I do not think this is necessary, SPG, 3/19/2023
#op.drop_constraint('user_repo_user_id_fkey', 'user_repos', schema='augur_operations', type_='foreignkey')
#op.create_foreign_key(None, 'user_repos', 'repo', ['repo_id'], ['repo_id'], source_schema='augur_operations', referent_schema='augur_data')
Expand All @@ -66,5 +66,6 @@ def add_repo_clone_data_table_1(upgrade = True):
#op.drop_constraint(None, 'user_repos', schema='augur_operations', type_='foreignkey')
#op.create_foreign_key('user_repos_repo_id_fkey', 'user_repos', 'repo', ['repo_id'], ['repo_id'], source_schema='augur_operations')
op.drop_table('repo_clones_data', schema='augur_data')
op.execute(sa.schema.DropSequence(traffic_sequence))