diff options
| author | rtkay123 <dev@kanjala.com> | 2026-04-12 14:17:49 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2026-04-12 14:17:49 +0200 |
| commit | d9375b82c3bb3a917e1795be4dcd7ed849b32ca2 (patch) | |
| tree | 308245b0e578179bf0ff047ddc453ab1934a0795 /migrations/20260412121213_profile.sql | |
| parent | 34b2f8ff6a99471fbb72ed7c52a92b92645b0652 (diff) | |
| download | sellershut-d9375b82c3bb3a917e1795be4dcd7ed849b32ca2.tar.bz2 sellershut-d9375b82c3bb3a917e1795be4dcd7ed849b32ca2.zip | |
build: migrations
Diffstat (limited to 'migrations/20260412121213_profile.sql')
| -rw-r--r-- | migrations/20260412121213_profile.sql | 5 |
1 files changed, 5 insertions, 0 deletions
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) +); |
