Open awesome1128 opened 1 year ago
Why don't you reply? Don't you have confidence in your code?
Why I get this error? As you know, php artisan migrate command is for adding tables to the database, but this error says that your script is trying to connect to the table before adding tables.
Weird concept!!!
Do you know why?
Thanks.
I have installed on Laravel 10 and it loads everything. You just need to do some manual work. For example, create the setting table manually. You can use this:
CREATE TABLE `pagebuilder_settings` (
`id` int(11) NOT NULL,
`setting` varchar(50) NOT NULL,
`value` mediumtext NOT NULL,
`is_array` tinyint(1) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `pagebuilder_settings`
ADD PRIMARY KEY (`id`);
ALTER TABLE `pagebuilder_settings`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
Also you don't need to intimidate the developer to respond to your comment. he might be busy and he has his own life to take care of. Just be patient and have some respect.
You pushed Laravel library 3 years ago. Do you believe, this library will work on Laravel 10?
And when I run "php artisan migrate" command in Laravel project, I keep getting this error.
Do you know why? Please let me know, thanks.