mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
9 lines
185 B
Ruby
9 lines
185 B
Ruby
class AddUserOpenIdUrl < ActiveRecord::Migration[5.2]
|
|
def self.up
|
|
add_column :users, :open_id_url, :string
|
|
end
|
|
|
|
def self.down
|
|
remove_column :users, :open_id_url
|
|
end
|
|
end
|