chore(db): remove unused columns
This commit is contained in:
parent
30899803ae
commit
dad393355b
41 changed files with 15 additions and 50 deletions
5
db/migrate/20230117094309_remove_row_from_champs.rb
Normal file
5
db/migrate/20230117094309_remove_row_from_champs.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveRowFromChamps < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
safety_assured { remove_columns :champs, :row }
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class RemoveEncryptedTokenAndActiveFromAdministrateurs < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
safety_assured { remove_columns :administrateurs, :encrypted_token, :active }
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue