我正在使用以下orm描述:
App\Entity\Journal:
type: entity
table: hpa_journal
repositoryClass: App\Repository\JournalRepository
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fields:
longDescription:
type: array
nullable: true
column: long_description
当我运行doctrine:schema:create
时,它完全没有问题,并创建了数据库。但是,当我运行schema:update
时,出现以下错误:
php bin/console doctrine:schema:update --dump-sql
The following SQL statements will be executed:
ALTER TABLE HPA_JOURNAL MODIFY (long_description CLOB DEFAULT NULL);
由于CLOB
已经和DEFAULT NULL
一样,这毫无意义,但在schema:create
中却是这样说的>]
[当我运行schema:update --force
以摆脱此消息时,我收到ORACLE错误:
ORA-22859: invalid modification of columns
我正在使用以下orm描述:App \ Entity \ Journal:类型:实体表:hpa_journal repositoryClass:App \ Repository \ JournalRepository id:id:类型:整数id:true ...