diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-23 18:54:11 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-23 18:54:11 +0200 |
commit | 579883b66bceefe7b50157401bccbf66a6c5d58e (patch) | |
tree | 709787bc94f512a8446f6d3650486ec6d5027bd0 /crates/auth/migrations/20250723100947_user.sql | |
parent | 089efa225cc0a4e7be12608129ddbff28d11f320 (diff) | |
download | sellershut-579883b66bceefe7b50157401bccbf66a6c5d58e.tar.bz2 sellershut-579883b66bceefe7b50157401bccbf66a6c5d58e.zip |
feat(auth): tower session
Diffstat (limited to 'crates/auth/migrations/20250723100947_user.sql')
-rw-r--r-- | crates/auth/migrations/20250723100947_user.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/auth/migrations/20250723100947_user.sql b/crates/auth/migrations/20250723100947_user.sql new file mode 100644 index 0000000..440afc7 --- /dev/null +++ b/crates/auth/migrations/20250723100947_user.sql @@ -0,0 +1,9 @@ +-- Add migration script here +create table auth_user ( + id uuid primary key, + email text unique not null, + avatar text, + description text, + updated_at text, + create_at timestamptz not null default now() +); |