mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 07:10:12 +01:00
9 lines
252 B
Ruby
9 lines
252 B
Ruby
class NoDefaultAdminEmail < ActiveRecord::Migration[5.2]
|
|
def up
|
|
remove_column :preferences, :admin_email
|
|
end
|
|
|
|
def down
|
|
add_column :preferences, :admin_email, :string, {:default => "butshesagirl@rousette.org.uk", :null => false}
|
|
end
|
|
end
|