diff --git a/db/migrate/20150403212139_fix_wrong_only_sharing.rb b/db/migrate/20150403212139_fix_wrong_only_sharing.rb new file mode 100644 index 000000000..8299ea88b --- /dev/null +++ b/db/migrate/20150403212139_fix_wrong_only_sharing.rb @@ -0,0 +1,11 @@ +class FixWrongOnlySharing < ActiveRecord::Migration + def up + Contact.where(sharing: true, receiving: false) + .where(id: AspectMembership.select(:contact_id)) + .update_all(receiving: true) + end + + def down + raise ActiveRecord::IrreversibleMigration + end +end diff --git a/db/schema.rb b/db/schema.rb index 6bdcab9ca..07f4db16c 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20150220001357) do +ActiveRecord::Schema.define(version: 20150403212139) do create_table "account_deletions", force: :cascade do |t| t.string "diaspora_handle", limit: 255