Skip to content

Instantly share code, notes, and snippets.

@wikimatze
Last active October 14, 2018 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wikimatze/f74cdafb2ec151c419debcfe93d324a4 to your computer and use it in GitHub Desktop.
Save wikimatze/f74cdafb2ec151c419debcfe93d324a4 to your computer and use it in GitHub Desktop.
padrino blog tutorial migrateExistingPostsToFirstAccount
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