From 579883b66bceefe7b50157401bccbf66a6c5d58e Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Wed, 23 Jul 2025 18:54:11 +0200 Subject: feat(auth): tower session --- crates/auth/migrations/20250723100947_user.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 crates/auth/migrations/20250723100947_user.sql (limited to 'crates/auth/migrations/20250723100947_user.sql') 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() +); -- cgit v1.2.3