We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Migration:
$this->table('custom_schema.table_name')->create();
Generates:
CREATE TABLE [custom_schema].[table_name] ([id] INT NOT NULL IDENTITY(1,1), CONSTRAINT PK_custom_schema.table_name PRIMARY KEY ([id]));
This gives the error:
Incorrect syntax near '.'.
PK_custom_schema.table_name needs to be parsed to remove the ..
PK_custom_schema.table_name
.
The text was updated successfully, but these errors were encountered:
Fixed by #2306
Sorry, something went wrong.
No branches or pull requests
Migration:
Generates:
This gives the error:
PK_custom_schema.table_name
needs to be parsed to remove the.
.The text was updated successfully, but these errors were encountered: