Skip to content

Commit

Permalink
[Automated] Merged master into target k8s
Browse files Browse the repository at this point in the history
  • Loading branch information
va-vsp-bot authored Apr 10, 2024
2 parents 3253c02 + 37eaf5c commit e8d898b
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 306 deletions.
164 changes: 0 additions & 164 deletions db/migrate/20240405184242_create_orgs_reps_tables.rb

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

class RemoveFkeysFromAccreditedOrganizationsAccreditedRepresentatives < ActiveRecord::Migration[7.1]
def change
remove_foreign_key :accredited_organizations_accredited_representatives, :accredited_representatives,
column: :accredited_representative_id, if_exists: true
remove_foreign_key :accredited_organizations_accredited_representatives, :accredited_organizations,
column: :accredited_organization_id, if_exists: true
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

class DropAccreditedOrganizationsAccreditedRepresentatives < ActiveRecord::Migration[7.1]
def change
drop_table :accredited_organizations_accredited_representatives, if_exists: true # rubocop:disable Rails/ReversibleMigration
end
end
7 changes: 7 additions & 0 deletions db/migrate/20240410212508_drop_accredited_organizations.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

class DropAccreditedOrganizations < ActiveRecord::Migration[7.1]
def change
drop_table :accredited_organizations, if_exists: true # rubocop:disable Rails/ReversibleMigration
end
end
7 changes: 7 additions & 0 deletions db/migrate/20240410212528_drop_accredited_representatives.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

class DropAccreditedRepresentatives < ActiveRecord::Migration[7.1]
def change
drop_table :accredited_representatives, if_exists: true # rubocop:disable Rails/ReversibleMigration
end
end
7 changes: 7 additions & 0 deletions db/migrate/20240410212702_drop_accredited_claims_agents.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

class DropAccreditedClaimsAgents < ActiveRecord::Migration[7.1]
def change
drop_table :accredited_claims_agents, if_exists: true # rubocop:disable Rails/ReversibleMigration
end
end
7 changes: 7 additions & 0 deletions db/migrate/20240410212727_drop_accredited_attorneys.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

class DropAccreditedAttorneys < ActiveRecord::Migration[7.1]
def change
drop_table :accredited_attorneys, if_exists: true # rubocop:disable Rails/ReversibleMigration
end
end
143 changes: 1 addition & 142 deletions db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e8d898b

Please sign in to comment.