docbrown/db/migrate/20190425210432_add_twitch_url_to_users.rb
Ben Halpern a711e2246e
Add proper twitch url migration (#2561)
* Add proper twitch url migration

* Change schema version
2019-04-25 17:38:21 -04:00

5 lines
124 B
Ruby

class AddTwitchUrlToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :twitch_url, :string
end
end