Migrating: 2019_05_03_000001_create_customer_columns
Illuminate\Database\QueryException
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'test1.users' doesn't exist (SQL: alter table `users` add `stripe_id` varchar(191) null, add `pm_type` varchar(191) null, add `pm_last_four` varchar(4) null, add `trial_ends_at` timestamp null)
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▕ }
• A table was not found: You might have forgotten to run your migrations. You can run your migrations using `php artisan migrate`.
https://laravel.com/docs/master/migrations#running-migrations