Merge pull request #1227 from internetee/remove-unused-db-tables

Remove unused db tables
This commit is contained in:
Timo Võhmar 2019-06-19 10:48:43 +03:00 committed by GitHub
commit de3db4823e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 171 deletions

View file

@ -0,0 +1,5 @@
class RemoveDepricatedVersions < ActiveRecord::Migration
def change
drop_table :depricated_versions
end
end

View file

@ -0,0 +1,5 @@
class RemoveDnskeysDelegationSignerId < ActiveRecord::Migration
def change
remove_column :dnskeys, :delegation_signer_id
end
end

View file

@ -0,0 +1,5 @@
class RemoveDelegationSigners < ActiveRecord::Migration
def change
drop_table :delegation_signers
end
end

View file

@ -0,0 +1,5 @@
class RemoveBanklinkTransactions < ActiveRecord::Migration
def change
drop_table :banklink_transactions
end
end