We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc5601 commit 78f6beaCopy full SHA for 78f6bea
cloudsql_to_supabase/clean.py
@@ -19,7 +19,7 @@ def __init__(
19
) -> None:
20
self.input_file = Path(input_file or config.OUTPUT_DUMP)
21
self.output_file = Path(output_file or config.CLEANED_DUMP)
22
- self.target_schema = target_schema or"development"
+ self.target_schema = target_schema or "public"
23
self.target_owner = target_owner or "postgres"
24
25
logger.info(
@@ -183,7 +183,7 @@ def clean_dump_file(
183
cleaner = DumpCleaner(
184
input_file=input_file,
185
output_file=output_file,
186
- target_schema='development',
+ target_schema= target_schema,
187
target_owner=target_owner
188
)
189
return cleaner.clean_dump_file()
0 commit comments