mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-08 00:34:19 +01:00
9 lines
247 B
Ruby
9 lines
247 B
Ruby
class NoDefaultAdminEmail < ActiveRecord::Migration
|
|
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
|