Codeigniter 4 メモ
CLI
マイグレーションファイル作成
# php spark migrate:create {table name}
シードファイル作成
# php spark make:seeder {table name}
シード投入
# php spark db:seed {seed file name}
書き方
マイグレーションファイル
<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class Cars extends Migration
{
public function up()
{
$this->forge->addField([
'id' => [
'type' => 'CHAR',
'constraint' => 32,
],
'type' => [
'type' => 'TEXT',
],
'price' => [
'type' => 'INT',
'constraint' => 32,
],
'color' => [
'type' => 'TEXT',
],
'remark' => [
'type' => 'TEXT',
'null' => true,
],
'status' => [
'type' => 'ENUM',
'constraint' => ['onsale', 'sold'],
'default' => 'onsale',
],
// 配列だとdatetime型でdefault設定ができないので以下書き方となる
'created_at datetime default current_timestamp',
'updated_at datetime default current_timestamp on update current_timestamp',
]);
$this->forge->addKey('id', true); // PL
$this->forge->createTable('cars'); // created
}
//--------------------------------------------------------------------
public function down()
{
$this->forge->dropTable('cars');
}
}