mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 13:16:05 +01:00
8 lines
228 B
Ruby
8 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveIsActiveFromSubscriptions < ActiveRecord::Migration[6.1]
|
|
def up
|
|
execute "DELETE FROM subscriptions WHERE is_active = FALSE"
|
|
remove_column :subscriptions, :is_active
|
|
end
|
|
end
|