summary refs log tree commit diff
path: root/src/db/migrations/2024102301_0.1.0_extensions.up.sql
diff options
context:
space:
mode:
authorAshelyn Rose <git@ashen.earth>2024-10-23 01:44:56 -0600
committerAshelyn Rose <git@ashen.earth>2024-10-26 02:12:22 -0400
commit2eee33d2a2042b209dd5f9ef4b7314ea81a33360 (patch)
treea6d972354d717bb5cd1c23ed383d8a7787a4c5ac /src/db/migrations/2024102301_0.1.0_extensions.up.sql
parent9c9268b60b10b7322aea84704bc1f5f8fbb0bbb8 (diff)
Base table schema
Diffstat (limited to 'src/db/migrations/2024102301_0.1.0_extensions.up.sql')
-rw-r--r--src/db/migrations/2024102301_0.1.0_extensions.up.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/db/migrations/2024102301_0.1.0_extensions.up.sql b/src/db/migrations/2024102301_0.1.0_extensions.up.sql
new file mode 100644
index 0000000..56f3a19
--- /dev/null
+++ b/src/db/migrations/2024102301_0.1.0_extensions.up.sql
@@ -0,0 +1,7 @@
+create schema "phtx_ext";
+
+create extension "uuid-ossp"
+  with schema "phtx_ext";
+
+create extension "citext"
+  with schema "phtx_ext";