summaryrefslogtreecommitdiffstats
path: root/crates/auth-service/migrations/20250723100947_user.sql
diff options
context:
space:
mode:
Diffstat (limited to 'crates/auth-service/migrations/20250723100947_user.sql')
-rw-r--r--crates/auth-service/migrations/20250723100947_user.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/auth-service/migrations/20250723100947_user.sql b/crates/auth-service/migrations/20250723100947_user.sql
index b5566fe..8da2ed2 100644
--- a/crates/auth-service/migrations/20250723100947_user.sql
+++ b/crates/auth-service/migrations/20250723100947_user.sql
@@ -2,6 +2,7 @@
create table auth_user (
id uuid primary key,
email text unique not null,
+ private_key text not null,
updated_at timestamptz not null default now(),
created_at timestamptz not null default now()
);