mirror of
https://github.com/internetee/registry.git
synced 2025-08-02 16:02:03 +02:00
Merge branch 'master' into 2342-notification-text-lenght
This commit is contained in:
commit
fcbbd4b2d3
147 changed files with 3897 additions and 1272 deletions
|
@ -1,5 +1,5 @@
|
|||
class AddStatusesBackupForDomains < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
add_column :domains, :statuses_backup, :string, array: true, default: []
|
||||
# add_column :domains, :statuses_backup, :string, array: true, default: []
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
class RenameDomainsStatusesBackupToStatusesBeforeForceDelete < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
rename_column :domains, :statuses_backup, :statuses_before_force_delete
|
||||
# rename_column :domains, :statuses_backup, :statuses_before_force_delete
|
||||
end
|
||||
end
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
class RemoveStatusesBeforeForceDeleteFromDomains < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
remove_column :domains, :statuses_before_force_delete if column_exists? :domains, :statuses_before_force_delete
|
||||
end
|
||||
end
|
|
@ -0,0 +1,6 @@
|
|||
class AddMonthlyInvoiceTypeColumns < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :invoices, :monthly_invoice, :boolean, default: false
|
||||
add_column :invoices, :metadata, :jsonb
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue