-
Notifications
You must be signed in to change notification settings - Fork 890
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow us to change protected string $schema
in SqlServerAdapter
#2304
Comments
Postgres has the following to override using the phinx/src/Phinx/Db/Adapter/PostgresAdapter.php Lines 1548 to 1553 in a093a96
Can add a similar function to SqlServerAdapter and anywhere it uses |
Hm, actually, won't be quite as simple, as I don't think sqlserver has the same concept as postgres in terms of being able to set a I suppose we could minimally allow changing the I think there's also potential bugs where if you have the DB objects with the same name in multiple schemas, then phinx may return data in unexpected ways from some functions (e.g. |
Currently the SqlServerAdapter has this property that cannot be changed:
protected string $schema = 'dbo'
Please allow us to change this.
The text was updated successfully, but these errors were encountered: