Removed skype field and added Discord on users. Also dropped unused table

This commit is contained in:
Futseh
2019-02-22 16:44:25 +01:00
parent 7bae0042a0
commit b3a3473923
9 changed files with 26 additions and 21 deletions
@@ -0,0 +1,5 @@
class DropForumsLabels < ActiveRecord::Migration
def change
drop_table :forums_labels
end
end
@@ -0,0 +1,6 @@
class RemoveSkypeAddDiscordFromUsers < ActiveRecord::Migration
def change
remove_column :users, :skype
add_column :users, :discord, :string
end
end