forge->addField([ 'payment_method_id' => ['type' => 'INT', 'unsigned' => true, 'auto_increment' => true], 'payment' => ['type' => 'VARCHAR', 'constraint' => 255], 'created_at' => ['type' => 'DATETIME', 'null' => true], 'updated_at' => ['type' => 'DATETIME', 'null' => true], 'deleted_at' => ['type' => 'DATETIME', 'null' => true], ]); $this->forge->addKey('payment_method_id', true); $this->forge->createTable('payment_method'); } public function down() { $this->forge->dropTable('payment_method'); } }