We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c97b9a commit 551c590Copy full SHA for 551c590
migrations/versions/eb50ffe96509_init.py
@@ -10,6 +10,10 @@
10
import sqlmodel
11
from alembic import op
12
13
+op.execute("CREATE SCHEMA IF NOT EXISTS aro_users;")
14
+op.execute("CREATE SCHEMA IF NOT EXISTS main;")
15
+op.execute("CREATE SCHEMA IF NOT EXISTS transactional;")
16
+
17
# revision identifiers, used by Alembic.
18
revision = "eb50ffe96509"
19
down_revision = None
0 commit comments