mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-23 23:54:07 +01:00
10 lines
200 B
Ruby
10 lines
200 B
Ruby
# typed: false
|
|
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
|