summaryrefslogtreecommitdiffstats
path: root/crates/auth-service/migrations/20250723100947_user.sql
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-07-30 08:52:05 +0200
committerrtkay123 <dev@kanjala.com>2025-07-30 08:52:05 +0200
commit259cad06f8d88db9ddfa85c2c188b5b0130cb393 (patch)
tree2211866223d17d7a36c89e3eb39da39ea9863153 /crates/auth-service/migrations/20250723100947_user.sql
parent92620ba85d729d27ffe4d141149ba9b82e543d74 (diff)
downloadsellershut-259cad06f8d88db9ddfa85c2c188b5b0130cb393.tar.bz2
sellershut-259cad06f8d88db9ddfa85c2c188b5b0130cb393.zip
feat(auth): create keypair
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()
);