diskfloppy.me/db/migrations/00000000000001_create_users.cr

18 lines
389 B
Crystal
Raw Normal View History

2024-09-13 11:58:12 +00:00
class CreateUsers::V00000000000001 < Avram::Migrator::Migration::V1
def migrate
enable_extension "citext"
create table_for(User) do
primary_key id : Int64
add_timestamps
add email : String, unique: true, case_sensitive: false
add encrypted_password : String
end
end
def rollback
drop table_for(User)
disable_extension "citext"
end
end