mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-20 09:10:12 +01:00
10 lines
238 B
Ruby
10 lines
238 B
Ruby
class AddNextReviewPreferences < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
add_column :preferences, :review_period, :integer, :default => 14, :null => false
|
|
end
|
|
|
|
def self.down
|
|
remove_column :preferences, :review_period
|
|
end
|
|
end
|