From d9375b82c3bb3a917e1795be4dcd7ed849b32ca2 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 12 Apr 2026 14:17:49 +0200 Subject: build: migrations --- migrations/20260412121213_profile.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/20260412121213_profile.sql (limited to 'migrations/20260412121213_profile.sql') diff --git a/migrations/20260412121213_profile.sql b/migrations/20260412121213_profile.sql new file mode 100644 index 0000000..8a6a39a --- /dev/null +++ b/migrations/20260412121213_profile.sql @@ -0,0 +1,5 @@ +create table profile ( + data jsonb not null, + id text generated always as (data->>'id') stored, + primary key (id) +); -- cgit v1.2.3