From a51d54d5ef80316acb22bd7f3ad7f0a9f58672f8 Mon Sep 17 00:00:00 2001 From: phoenix Date: Wed, 22 Oct 2025 11:39:51 -0400 Subject: [PATCH] tsk-68: Removed file --- run_migrations.txt | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 run_migrations.txt diff --git a/run_migrations.txt b/run_migrations.txt deleted file mode 100644 index 00583ef..0000000 --- a/run_migrations.txt +++ /dev/null @@ -1,27 +0,0 @@ -TODO: At some point, move this somewhere that is appropriate - -# Make sure role has CREATEDB -ALTER ROLE username_that_needs_permission CREATEDB; - -# Install migrations -cargo install sqlx-cli - -# Make sure to populate DATABASE_URL with correct value. -# By default, the DATABASE_URL found in .env file will be used -export DATABASE_URL="postgres://icarus_op_test:password@localhost/icarus_auth_test" - -# init -sqlx migrate add init_migration -sqlx migrate run - -# Create -sqlx database create - -# Drop -sqlx database drop - -# setup -sqlx database setup - -# Reset -sqlx database reset