Laravel - artisan - 无法插入空列

Laravel - artisan - cannot insert with null column

我有这个 table 结构,部分是我用 laravel 构建器创建的:

public function up() {
    DB::statement('
        CREATE TABLE `tbl_permission` (
          `permission_id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
          `id_module` smallint(5) unsigned NOT NULL,
          `name` varchar(50) NOT NULL,
          `create` TINYINT NOT NULL DEFAULT 0,
          `view` TINYINT NOT NULL DEFAULT 0,
          `is_composition` tinyint(1) NOT NULL DEFAULT "0", 
          `suffix_czech_name` VARCHAR(100), 
          `permission_table` VARCHAR(50),   
          FOREIGN KEY (`id_module`) REFERENCES `tbl_modules` (`id_module`)
        ) COLLATE utf8_czech_ci;
    ');
}

然后我有另一个带有插入的迁移:

public function up() {
    DB::table('tbl_permission')->insert([
        ['name' => 'account_bad_rooms', 'id_module' => 1, 'create' => 0, 'view' => 1, 'is_composition' => 0, 'suffix_czech_name' => 'name'],
        ['name' => 'account', 'id_module' => 1, 'create' => 1, 'view' => 1, 'is_composition' => 0, 'suffix_czech_name' => 'name'],
        ['name' => 'accountRoomIdConfig', 'id_module' => 1, 'create' => 1, 'view' => 1, 'is_composition' => 0, 'suffix_czech_name' => 'name', 'permission_table' => 'accountRoomIdConfig']
    ]);
}

当我使用迁移时,除了我没有任何插入的数据外,一切正常,没有任何错误。我发现这是因为在两个插入中我没有可以为空的列 permission_table。当我添加此列时,所有插入都具有相同的结构,迁移很好。问题是我有超过 70 个插入,有些有 permission_table 列,有些没有。是否可以以某种方式插入所有结构不相同的数据?

如果您在没有设置 permission_table 值的情况下进行插入,您将收到 sql 错误 value list does not match column list。 即使默认值为空。您仍然必须传递所有行中值为 '' 的列,即使它没有值。

public function up() {
DB::table('tbl_permission')->insert([
    [
     'name' => 'account_bad_rooms', 
     'id_module' => 1, 
     'create' => 0, 
     'view' => 1, 
     'is_composition' => 0, 
     'suffix_czech_name' => 'name'
     'permission_table' => ''
    ],
    [ 
      .... next record
    ]

  ]);
}

希望对您有所帮助。