mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-28 10:04:07 +01:00
10 lines
291 B
Ruby
10 lines
291 B
Ruby
# typed: false
|
|
class AddMobileTodosPerPagePreference < ActiveRecord::Migration[5.2]
|
|
def self.up
|
|
add_column :preferences, :mobile_todos_per_page, :integer, :null => false, :default => 6
|
|
end
|
|
|
|
def self.down
|
|
remove_column :preferences, :mobile_todos_per_page
|
|
end
|
|
end
|