I was trying to deploy my project built using Laravel but when I came to apply the command
heroku run php artisan migrate:refresh
I got an error
In Connection.php line 742:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to
your MySQL server version for the right syntax to use near 'json null, `uuid` char(36) not null, `created_at` timestamp null, `up
dated_at` t' at line 1 (SQL: create table `transactions` (`id` bigint unsigned not null auto_increment primary key, `payable_type`
varchar(191) not null, `payable_id` bigint unsigned not null, `wallet_id` bigint unsigned not null, `type` enum('deposit', 'withd
raw') not null, `amount` decimal(64, 0) not null, `confirmed` tinyint(1) not null, `meta` json null, `uuid` char(36) not null, `cr
eated_at` timestamp null, `updated_at` timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci')
I don't really know how to solve that. appreciate your help .