diff options
author | floppydiskette <floppydisk@hyprcat.net> | 2024-09-13 12:58:12 +0100 |
---|---|---|
committer | floppydiskette <floppydisk@hyprcat.net> | 2024-09-13 12:59:16 +0100 |
commit | 2c3400fb4f5a22951d42f286975201bf817d7883 (patch) | |
tree | a08b06f5f6d5df4f6774da7645d85418609a4cf2 /db | |
parent | d8915dcca4d9752f6f254e86afa39ef7f83617d1 (diff) |
wronglucky
Diffstat (limited to 'db')
-rw-r--r-- | db/migrations/.keep | 0 | ||||
-rw-r--r-- | db/migrations/00000000000001_create_users.cr | 17 |
2 files changed, 17 insertions, 0 deletions
diff --git a/db/migrations/.keep b/db/migrations/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/db/migrations/.keep diff --git a/db/migrations/00000000000001_create_users.cr b/db/migrations/00000000000001_create_users.cr new file mode 100644 index 0000000..96283bf --- /dev/null +++ b/db/migrations/00000000000001_create_users.cr @@ -0,0 +1,17 @@ +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 |