diff --git a/db/migrate/20180707162348_add_social_icons_to_user.rb b/db/migrate/20180707162348_add_social_icons_to_user.rb index f57cc90d4..ec4543dcc 100644 --- a/db/migrate/20180707162348_add_social_icons_to_user.rb +++ b/db/migrate/20180707162348_add_social_icons_to_user.rb @@ -5,6 +5,5 @@ class AddSocialIconsToUser < ActiveRecord::Migration[5.1] add_column :users, :linkedin_url, :string add_column :users, :behance_url, :string add_column :users, :dribbble_url, :string - add_column :users, :twitch_url, :string end end diff --git a/db/migrate/20190425210432_add_twitch_url_to_users.rb b/db/migrate/20190425210432_add_twitch_url_to_users.rb new file mode 100644 index 000000000..1e5c3b9e5 --- /dev/null +++ b/db/migrate/20190425210432_add_twitch_url_to_users.rb @@ -0,0 +1,5 @@ +class AddTwitchUrlToUsers < ActiveRecord::Migration[5.2] + def change + add_column :users, :twitch_url, :string + end +end diff --git a/db/schema.rb b/db/schema.rb index 441c40d7b..0efe783d9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2019_04_17_171020) do +ActiveRecord::Schema.define(version: 2019_04_25_210432) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql"