gpt4 book ai didi

php - 根据 Doctrine 进行迁移时出错

转载 作者:行者123 更新时间:2023-12-02 20:11:51 25 4
gpt4 key购买 nike

我正在尝试通过为我刚刚创建的实体进行迁移来将表创建到 sql server 中,但它在执行查询时抛出异常:

SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties are not permitted on 'dbo.[user].roles', or the object does not exist.

通过使用 maker-bundle 我创建了一个新的用户实体

我做了迁移:

$ php bin/console make:migration

  Success!


Next: Review the new migration "src/Migrations/Version20181121121145.php"
Then: Run the migration with php bin/console doctrine:migrations:migrate
See https://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html

然后在迁移迁移的时候:

$ php bin/console doctrine:migrations:migrate

Application Migrations


WARNING! You are about to execute a database migration that could result in schema changes and data loss. Are you sure you wish to continue? (y/n)y
Migrating up to 20181121121145 from 0

++ migrating 20181121121145

-> CREATE TABLE [user] (id INT IDENTITY NOT NULL, username NVARCHAR(180) NOT NULL, roles VARCHAR(MAX) NOT NULL, password NVARCHAR(255) NOT NULL, email NVARCHAR(255) NOT NULL, PRIMARY KEY (id))
-> CREATE UNIQUE INDEX UNIQ_8D93D649F85E0677 ON [user] (username) WHERE username IS NOT NULL
-> EXEC sp_addextendedproperty N'MS_Description', N'(DC2Type:json)', N'SCHEMA', 'dbo', N'TABLE', '[user]', N'COLUMN', roles
Migration 20181121121145 failed during Execution. Error An exception occurred while executing 'EXEC sp_addextendedproperty N'MS_Description', N'(DC2Type:json)', N'SCHEMA', 'dbo', N'TABLE', '[user]', N'COLUMN', roles':

SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties are not permitted on 'dbo.[user].roles', or the object does not exist.

In DBALException.php line 187:

An exception occurred while executing 'EXEC sp_addextendedproperty N'MS_Description', N'(DC2Type:json)', N'SCHEMA', '
dbo', N'TABLE', '[user]', N'COLUMN', roles':

SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties
are not permitted on 'dbo.[user].roles', or the object does not exist.


In SQLSrvException.php line 57:

SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties
are not permitted on 'dbo.[user].roles', or the object does not exist.


doctrine:migrations:migrate [--write-sql [WRITE-SQL]] [--dry-run] [--query-time] [--allow-no-migration] [--configuration [CONFIGURATION]] [--db-configuration [DB-CONFIGURATION]] [--db DB] [--em EM] [--shard SHARD] [-h|--help] [-q|--quiet] [-v|vv|vvv|--verbose] [-V|--version] [--ansi] [--no-ansi] [-n|--no-interaction] [-e|--env ENV] [--no-debug] [--] <command> [<version>]

迁移文件如下所示:

//Version20181121121145.php
<?php declare(strict_types=1);

namespace DoctrineMigrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;

/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20181121121145 extends AbstractMigration
{
public function up(Schema $schema) : void
{
// this up() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mssql', 'Migration can only be executed safely on \'mssql\'.');

$this->addSql('CREATE TABLE [user] (id INT IDENTITY NOT NULL, username NVARCHAR(180) NOT NULL, roles VARCHAR(MAX) NOT NULL, password NVARCHAR(255) NOT NULL, email NVARCHAR(255) NOT NULL, PRIMARY KEY (id))');
$this->addSql('CREATE UNIQUE INDEX UNIQ_8D93D649F85E0677 ON [user] (username) WHERE username IS NOT NULL');
$this->addSql('EXEC sp_addextendedproperty N\'MS_Description\', N\'(DC2Type:json)\', N\'SCHEMA\', \'dbo\', N\'TABLE\', \'[user]\', N\'COLUMN\', roles');
}

public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mssql', 'Migration can only be executed safely on \'mssql\'.');

$this->addSql('CREATE SCHEMA db_accessadmin');
$this->addSql('CREATE SCHEMA db_backupoperator');
$this->addSql('CREATE SCHEMA db_datareader');
$this->addSql('CREATE SCHEMA db_datawriter');
$this->addSql('CREATE SCHEMA db_ddladmin');
$this->addSql('CREATE SCHEMA db_denydatareader');
$this->addSql('CREATE SCHEMA db_denydatawriter');
$this->addSql('CREATE SCHEMA db_owner');
$this->addSql('CREATE SCHEMA db_securityadmin');
$this->addSql('CREATE SCHEMA dbo');
$this->addSql('DROP TABLE [user]');
}
}

提前致谢。

第一个解决方案:

我打开了 SQL Server Management Studio 并一一测试了三个查询。前两个只找到了,但第三个失败了,所以我按照@sepupic 说的做了,它成功了。

有人能解释一下为什么当我使用 maker-bundle 进行迁移时,查询如下:

$this->addSql('EXEC sp_addextendedproperty N\'MS_Description\', N\'(DC2Type:json)\', N\'SCHEMA\', \'dbo\', N\'TABLE\', \'[user]\', N\'COLUMN\', roles');

不显示用户而不是[用户]

最终解决方案似乎'user'是一个保留字,所以我将类重构为一个不同的名称,它从头到尾都运行良好

最佳答案

问题是 'user' 是 sql server 中的保留字,所以我将该类重构为不同的名称,它从头到尾都运行良好

关于php - 根据 Doctrine 进行迁移时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53401131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com