You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I updated the laravel/framework(v11.14.0 => v11.15.0)
a migration containing a table update (adding a string and date column for example),
the failure occurs: ORA-01430: column being added already exists in table
(I'm not sure if this only happens with Oracle DB, I haven't tested it on other databases)
but downgrading solves the problem: php composer update laravel/framework:11.14.0
Code snippet of problem
Schema::table('users', function (Blueprint$table) {
$table->string('string_test')->nullable();
$table->date('date_test')->nullable();
});
System details
Operating System : Linux 6.5.0-41-generic
PHP Version : PHP 8.3.8 (cli)
Laravel Version : 11.15.0
Laravel-OCI8 Version : v11.3.0
The text was updated successfully, but these errors were encountered:
Summary of problem or feature request
when I updated the
laravel/framework
(v11.14.0 => v11.15.0)
a migration containing a table update (adding a string and date column for example),
the failure occurs:
ORA-01430: column being added already exists in table
(I'm not sure if this only happens with Oracle DB, I haven't tested it on other databases)
but downgrading solves the problem:
php composer update laravel/framework:11.14.0
Code snippet of problem
System details
Linux 6.5.0-41-generic
PHP 8.3.8 (cli)
11.15.0
v11.3.0
The text was updated successfully, but these errors were encountered: