@Snapey yes it is and this is what i get when I dump
Doctrine\DBAL\Schema\Exception\ColumnDoesNotExist
There is no column with name "product_owner" on table "products".
at vendor/doctrine/dbal/src/Schema/Exception/ColumnDoesNotExist.php:16
12▕ final class ColumnDoesNotExist extends SchemaException
13▕ {
14▕ public static function new(string $columnName, string $table): self
15▕ {
➜ 16▕ return new self(
17▕ sprintf('There is no column with name "%s" on table "%s".', $columnName, $table),
18▕ self::COLUMN_DOESNT_EXIST,
19▕ );
20▕ }
+5 vendor frames
6 Modules/Products/Models/Product.php:96
Illuminate\Support\Facades\Facade::__callStatic()
7 Modules/Products/Console/RefreshProductColumns.php:44
Modules\Products\Models\Product::refreshColumns()