Trouble with tablesFilter
Im running a PostgreSQL Database to which i recently added the PostGIS extension. However if i try to push my schema it prompts me if i want to delete the tables "spatial_ref_sys" and "geometry_columns" both are created by the PostGIS extension. I dont want to delete those tables. But i also don't want to integrate them into my schema since they are managed by the extension. To try and combat this problem i added tablesFilter to my drizzle config.
tablesFilter: ["!spatial_ref_sys","!geometry_columns"],
This however changes nothing. But if i remove either of those filters it correctly filters out the table that i left in.
Is there anything im missing?
tablesFilter: ["!spatial_ref_sys","!geometry_columns"],
This however changes nothing. But if i remove either of those filters it correctly filters out the table that i left in.
Is there anything im missing?