wikicr/db/migrations/00000000000001_create_users.cr
Arthur Poulet e9bb1cbdc0
Some checks failed
continuous-integration/drone/push Build is failing
spike: try to install & migrate to lucky
2021-10-15 18:44:23 +02:00

18 lines
389 B
Crystal

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