我的Laravel项目连接到SQL Server数据库。我的SQL Server有问题。我有一个类似Base.Auth.personType
的架构。 Base.Auth
是我的架构的名称,personType
是我的表的名称。
迁移代码:
Schema::create("Base.Automation.personType", function (Blueprint $table) {
$table->increments('id');
$table->char('Title',500);
$table->boolean('IsDelete');
});
但是Laravel给我这个错误:
SQLSTATE [42000]:[Microsoft] [SQL Server的ODBC驱动程序13] [SQL 服务器]数据库“基础”不存在。
软件版本信息:
Laravel Version: 5.4.36
PHP Version: 7.2.6
Database Driver & Version: 72