mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 15:49:07 +01:00
5 lines
150 B
Ruby
5 lines
150 B
Ruby
class AddIsActiveToSubscriptions < ActiveRecord::Migration
|
|
def change
|
|
add_column :subscriptions, :is_active, :boolean, default: :true
|
|
end
|
|
end
|