This is my code:
public function up()
{
Schema::table('organization_user', function (Blueprint $table) {
$table->renameColumn('company_id', 'organization_id');
});
}
I want to rename column in table. And in this table have an column is enum type. But errors: Unknown database type company_roles requested, Doctrine\DBAL\Platforms\PostgreSQL100Platform may
not support it. I use laravel 5.6