Created
August 25, 2015 21:54
-
-
Save gtan66/bdf61a817d06d5c45c89 to your computer and use it in GitHub Desktop.
Fix account in spaceman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
account = Account.find_by(uuid: "066c4a44-6eaa-4712-9019-198817c4b2bd") | |
account_admin = User.find_by(email: "[email protected]") | |
account_admin.uuid = "b5465310-e7a0-0132-3401-1e4f0fde60c1" | |
account_admin.save! | |
account.name = "Nothing Forgotten" | |
account.account_admin_id = account_admin.id | |
account.account_admin_uuid = account_admin.uuid | |
account.save! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment