docbrown/db/migrate/20200426124118_add_youtube_to_user.rb
Rafi bdcfba7d70
[deploy] Saving youtube url (#7516)
* Saving youtube url

* Fixing description in the spec

* Optimizing youtube logo svg

* Fixing indentation of form
2020-04-27 14:14:07 -04:00

5 lines
122 B
Ruby

class AddYoutubeToUser < ActiveRecord::Migration[5.2]
def change
add_column :users, :youtube_url, :string
end
end