Last active
October 14, 2018 16:56
-
-
Save wikimatze/f74cdafb2ec151c419debcfe93d324a4 to your computer and use it in GitHub Desktop.
padrino blog tutorial migrateExistingPostsToFirstAccount
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
Sequel.migration do | |
up do | |
first_account_id = from(:accounts).get(:id) | |
if first_account_id | |
from(:posts).update(account_id: first_account_id) | |
end | |
end | |
down do | |
from(:posts).update(account_id: nil) | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment