sampoyigi Now, I tried this, but I get more errors:
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'ti_job_batches'
already exists (SQL: create table `ti_job_batches` (`id` varchar(128) not null,
`name` varchar(128) not null, `total_jobs` int not null, `pending_jobs` int not null,
`failed_jobs` int not null, `failed_job_ids` text not null, `options` mediumtext null,
`cancelled_at` int null, `created_at` int not null, `finished_at` int null) default
character set utf8mb4 collate 'utf8mb4_unicode_ci')
Steps that I do:
- download and unzip developer.zip from github
- move all files from TastyIgniter-develop to doc-root
- copied example.env to .env
- edit .env and insert values from old config/app.php and config/database.php
- run
composer update
(->all fine)
- run
php artisan:up
I see the following output:
Migrating application and extensions...
Migration table already exists
Migrating: 2021_07_20_000300_add_uuid_column_to_failed_jobs_table
Migrated: 2021_07_20_000300_add_uuid_column_to_failed_jobs_table (245.50ms)
Migrating: 2021_07_20_172212_create_job_batches_table
In Connection.php line 703:
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'ti_job_batches'
already exists (SQL: create table `ti_job_batches` (`id` varchar(128) not null,
`name` varchar(128) not null, `total_jobs` int not null, `pending_jobs` int not
null, `failed_jobs` int not null, `failed_job_ids` text not null, `options` mediumtext
null, `cancelled_at` int null, `created_at` int not null, `finished_at` int null)
default character set utf8mb4 collate 'utf8mb4_unicode_ci')
In Exception.php line 18:
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'ti_job_batches'
already exists
In PDOStatement.php line 117:
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'ti_job_batches'
already exists