-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Migrations fails when run /install #47
Comments
If you are testing the application locally, you need to use a virtual host. The |
Hi! |
Excelent, Thank you! |
I have added a bare-bones MySQL export to the root of the application. It is called |
Hi Razvan Zamfir, Thank you so mutch! It works now! The site is beautiful! |
@pebarradasaero If you see any issues with it, please let me know. |
Migration table created successfully.
Migrating: 2014_10_12_000000_create_users_table
Illuminate\Database\QueryException
SQLSTATE[HY000]: General error: 1824 Failed to open the referenced table 'roles' (SQL: alter table
users
add constraintusers_role_id_foreign
foreign key (role_id
) referencesroles
(id
))at vendor/laravel/framework/src/Illuminate/Database/Connection.php:712
708▕ // If an exception occurs when attempting to run a query, we'll format the error
709▕ // message to include the bindings with SQL, which will make this exception a
710▕ // lot more helpful to the developer instead of just the database's errors.
711▕ catch (Exception $e) {
➜ 712▕ throw new QueryException(
713▕ $query, $this->prepareBindings($bindings), $e
714▕ );
715▕ }
716▕ }
Whoops\Exception\ErrorException
Using ${var} in strings is deprecated, use {$var} instead
at vendor/facade/ignition/src/SolutionProviders/MergeConflictSolutionProvider.php:52$branch = "'".trim(shell_exec("cd $ {directory}; git branch | grep \* | cut -d ' ' -f2"))."'";
48▕ }
49▕
50▕ protected function getCurrentBranch(string $directory): string
51▕ {
➜ 52▕
53▕
54▕ if ($branch === "''") {
55▕ $branch = 'current branch';
56▕ }
PHP Fatal error: Uncaught Whoops\Exception\ErrorException: Using ${var} in strings is deprecated, use {$var} instead in /var/www/html/vendor/facade/ignition/src/SolutionProviders/MergeConflictSolutionProvider.php:52
The text was updated successfully, but these errors were encountered: