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
Postgres 10, PHP 7.3, Ubuntu 18.04
********************************************************************************************************************** * Welcome to DreamFactory Setup. ********************************************************************************************************************** Running Migrations... Migration table created successfully. Migration driver used: pgsql Migration driver used: pgsql SQLSTATE[42703]: Undefined column: 7 ERROR: column "service" of relation "service" does not exist LINE 1: update "service" set "service"."type" = $1 where "service"."... ^ (SQL: update "service" set "service"."type" = bitbucket2 where "service"."type" = bitbucket)
Fixed by changing service.type to type. Then...
service.type
type
Running Seeder... Seeding: AppSeeder "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?
File: vendor/dreamfactory/df-core/src/Database/Schema/ColumnSchema.php:124
Fixed by commenting out continue temporarily.
continue
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Postgres 10, PHP 7.3, Ubuntu 18.04
Fixed by changing
service.type
totype
. Then...File: vendor/dreamfactory/df-core/src/Database/Schema/ColumnSchema.php:124
Fixed by commenting out
continue
temporarily.The text was updated successfully, but these errors were encountered: