mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:19:52 +01:00
5 lines
155 B
Ruby
5 lines
155 B
Ruby
class AddIsActiveToSubscriptions < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :subscriptions, :is_active, :boolean, default: :true
|
|
end
|
|
end
|