Skip to content

Commit

Permalink
chore: remove flyway_group
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellmueller committed Jan 14, 2025
1 parent 288b01b commit eb4700a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions infrastructure/api/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ resource "aws_ecs_task_definition" "flyway_task" {
name = "FLYWAY_CONNECT_RETRIES"
value = "2"
},
{
name = "FLYWAY_GROUP"
value = "true"
},
# {
# name = "FLYWAY_GROUP"
# value = "true"
# },
{
# This defaults to true, though we want to enable it only in dev to reset the database
name = "FLYWAY_CLEAN_DISABLED"
Expand Down
1 change: 0 additions & 1 deletion migrations/sql/V1.0.0__init.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
create schema if not exists fta;
create schema if not exists rst;

create extension if not exists "postgis";
Expand Down
5 changes: 5 additions & 0 deletions migrations/sql/V1.0.1__rst_db.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
create schema if not exists fta;

create extension if not exists "postgis";

set search_path to fta, public;


create table recreation_project (
forest_file_id varchar(10) primary key,
project_name varchar(100),
Expand Down

0 comments on commit eb4700a

Please sign in to comment.