diff options
| author | ckonstanski <carlos.konstanski@olo.com> | 2024-05-27 14:52:07 -0600 |
|---|---|---|
| committer | ckonstanski <carlos.konstanski@olo.com> | 2024-05-27 14:52:07 -0600 |
| commit | e30ee019294e2abbbd3644b73e4327ae17df4392 (patch) | |
| tree | 44d03581f96d81e0990f0664c01e725de542e9c2 /sql/types | |
| parent | 42e351bb04d38b01a1d5b251cdbc0caaa4be3712 (diff) | |
gallery
Diffstat (limited to 'sql/types')
| -rw-r--r-- | sql/types/general.gallery_t.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/types/general.gallery_t.sql b/sql/types/general.gallery_t.sql new file mode 100644 index 0000000..a8f2060 --- /dev/null +++ b/sql/types/general.gallery_t.sql @@ -0,0 +1,11 @@ +drop type general.gallery_t cascade; + +create type general.gallery_t as ( + id bigint, + description text, + filename character varying, + mime_type character varying, + content text, + created timestamp without time zone, + modified timestamp without time zone +); |
