Skip to content

Commit

Permalink
chore: change comment
Browse files Browse the repository at this point in the history
  • Loading branch information
avallete committed Sep 24, 2024
1 parent a7459d3 commit eabde92
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions pkg/config/templates/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ default_pool_size = 20
max_client_conn = 100

[db.seed]
# Allow to decide if db reset should seed your database after migrations or not
# Determines whether to seed the database after migrations during a db reset
enabled = true
# A list of glob patterns where base path is supabase folder allowing to load
# specific seeds scripts at reset time
# example: path = ['./seeds/*.sql', '../project-src/seeds/.*-load-testing.sql']
# Specifies seed files to load during db reset using glob patterns
# Base path is the Supabase project folder
# Example: path = ['./seeds/*.sql', '../project-src/seeds/*-load-testing.sql']
path = ['./seed.sql']

[realtime]
Expand Down
8 changes: 4 additions & 4 deletions pkg/config/testdata/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ default_pool_size = 20
max_client_conn = 100

[db.seed]
# Allow to decide if db reset should seed your database after migrations or not
# Determines whether to seed the database after migrations during a db reset
enabled = true
# A list of glob patterns where base path is supabase folder allowing to load
# specific seeds scripts at reset time
# example: path = ['./seeds/*.sql', '../project-src/seeds/.*-load-testing.sql']
# Specifies seed files to load during db reset using glob patterns
# Base path is the Supabase project folder
# Example: path = ['./seeds/*.sql', '../project-src/seeds/*-load-testing.sql']
path = ['./seed.sql']

[realtime]
Expand Down

0 comments on commit eabde92

Please sign in to comment.