You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.0 KiB
PHP
74 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class CreateBranches extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
$this->forge->addField([
|
|
'branch_code' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 25,
|
|
],
|
|
'company_id' => [
|
|
'type' => 'INT',
|
|
'constraint' => 11,
|
|
'unsigned' => true,
|
|
],
|
|
'branch_name' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 255,
|
|
],
|
|
'address' => [
|
|
'type' => 'TEXT',
|
|
'null' => true,
|
|
],
|
|
'contact_number' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 20,
|
|
'null' => true,
|
|
],
|
|
'email_address' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 255,
|
|
'null' => true,
|
|
],
|
|
|
|
// Common fields
|
|
'created_at' => [
|
|
'type' => 'DATETIME',
|
|
'null' => true,
|
|
],
|
|
'created_by' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => '20',
|
|
'null' => true
|
|
],
|
|
'updated_at' => [
|
|
'type' => 'DATETIME',
|
|
'null' => true,
|
|
],
|
|
'updated_by' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => '20',
|
|
'null' => true
|
|
],
|
|
'deleted_at' => [
|
|
'type' => 'DATETIME',
|
|
'null' => true,
|
|
],
|
|
]);
|
|
$this->forge->addKey('branch_code', true);
|
|
$this->forge->addForeignKey('company_id', 'company_info', 'company_id', 'CASCADE', 'RESTRICT');
|
|
$this->forge->createTable('company_branch');
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->forge->dropTable('company_branch');
|
|
}
|
|
}
|