我已经开始研究CodeIgniter迁移确实可以提高我的新工作的开发标准。
但是,由于某种原因,我无法在数据库中创建任何表。
上面的迁移代码:
<php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_Create_users_table extends CI_Migration {
public function __construct()
{
parent::__construct();
$this->load->dbforge();
}
public function up()
{
$fields = array(
'user_id' => array(
'type' => 'INT',
'constraint' => 11,
'unique' => TRUE,
'null' => FALSE,
'auto_increment' => TRUE
),
'user_name' => array(
'type' => 'VARCHAR',
'constraint' => '255',
'null' => FALSE,
),
'user_email' => array(
'type' => 'VARCHAR',
'constraint' => '255',
'null' => FALSE,
),
'user_password' => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
'user_status' => array(
'type' => 'INT',
'constraint' => 1,
'default' => 0
),
'user_permissions' => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
'device_token' => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
'user_level' => array(
'type' => 'INT',
'constraint' => 3,
'default' => '=9'
),
'user_photo' => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
'device_snid' => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
'user_recovery_token' => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
'client' => array(
'type' => 'INT',
'constraint' => 11,
'null' => FALSE,
'default' => 0
),
'latitude' => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
'longitude' => array(
'type' => 'VARCHAR',
'constraint' => '255',
)
);
$this->dbforge->add_field($fields);
$this->dbforge->add_key('user_id', TRUE);
$attributes = array('ENGINE' => 'InnoDB');
try{
$this->dbforge->create_table('users',TRUE,$attributes);
echo '<pre>Table created</pre>';
} catch(Exception $e ){
echo '<pre>Error creating table.</pre>';
d($e);
}
$this->db->query(" INSERT INTO `users` VALUES (1, 'SYSTEM', 'NOUSERNAME', '111', 0, NULL, NULL, NULL, -9, NULL, NULL, NULL, 1, NULL, NULL)");
}
public function down()
{
$this->dbforge->drop_table('users',TRUE);
}
}
迁移文件名:/aplication/migrations/20181129120800_Create_users_table.php
运行迁移的控制器方法:
public function do_migration($version = NULL)
{
$this->load->library('migration');
if(isset($version) && ($this->migration->version($version) === FALSE))
{
show_error($this->migration->error_string());
}
elseif(is_null($version) && $this->migration->latest() === FALSE)
{
show_error($this->migration->error_string());
}
else
{
echo 'The migration has concluded successfully.';
}
}
CodeIgniter创建“迁移”表,并将“版本”设置为文件名的时间戳,这与预期的一样。
“用户”表未创建。打印调试消息“表已创建”。
如果我测试方法 $ this-> dbforge-> create_table('users',TRUE,$ attributes); ,它将返回 false 。
尝试调试并尝试/捕获错误,但唯一的结果是 bool(false)。
如果我创建任何表并选择表上的数据,CI就会按预期方式将其返回,因为数据库连接正常。
编辑
发现问题:在字段中,user_level上有一个错字,默认为“ -9”(默认为“ -9”)。
答案 0 :(得分:0)
问题是试图捕获异常,因为dbforge
不会引发任何异常。您应该恢复到旧的if
条件。
if($this->dbforge->create_table('users',TRUE,$attributes) === FALSE)
{
echo '<pre>Error creating table.</pre>';
return;
}
echo '<pre>Table created</pre>';
$res = $this->db->query(" INSERT INTO `users` VALUES (1, 'SYSTEM', 'NOUSERNAME', '111', 0, NULL, NULL, NULL, -9, NULL, NULL, NULL, 1, NULL, NULL)");
echo $res ? '<pre>Insert Succeeded</pre>' : '<pre>Insert Failed</pre>';
与您的问题无关,但是您不需要在__construct
中使用Migration_Create_users_table
方法。 dbforge
库由父类CI_Migration
加载。没有理由要覆盖CI_Migration::__construct
,并且如果您确实有理由,则调用parent::__construct($config);
是绝对必要的。 (哦,扩展类将需要在其构造函数中接受一个$config
参数。)
万一最后一段不清楚(是的,我在后面漫步),请从Migration_Create_users_table
中删除构造函数。