How to ignore SQL scripts outside db/views
?
#391
-
I have some existing SQL scripts in When I run |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The scenic schema dumper dumps all views in the database that is configured for your current environment. This is consistent with how the rails schema dumper handles tables. If you had scripts that created tables then ran migrations, you would find those tables in your schema too. I have two pieces of advice:
|
Beta Was this translation helpful? Give feedback.
The scenic schema dumper dumps all views in the database that is configured for your current environment. This is consistent with how the rails schema dumper handles tables. If you had scripts that created tables then ran migrations, you would find those tables in your schema too.
I have two pieces of advice:
ignore_tables
in order to prevent certain views from being dumped.