Skip to content

Instantly share code, notes, and snippets.

@wub
Created July 6, 2019 06:59
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 wub/5921dae0f838b953f0897c4615cffc81 to your computer and use it in GitHub Desktop.
Save wub/5921dae0f838b953f0897c4615cffc81 to your computer and use it in GitHub Desktop.
New migration
class CreateJarrods::V20190706065802 < Avram::Migrator::Migration::V1
def migrate
create table_for(Jarrod) do
primary_key id : Int64
add_timestamps
end
end
def rollback
drop table_for(Jarrod)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment