forge->addField([ 'perm_id' => [ 'type' => 'INT', 'constraint' => 11, 'unsigned' => true, ], 'user_id' => [ 'type' => 'INT', 'constraint' => 11, 'unsigned' => true, ], 'state' => [ 'type' => 'TINYINT', 'constraint' => 1, 'default' => 1, ], ]); $this->forge->addKey(['perm_id', 'user_id'], true); $this->forge->addForeignKey('perm_id', $config->dbTablePerms, 'id', 'CASCADE', 'CASCADE'); $this->forge->addForeignKey('user_id', $config->dbTableUsers, 'id', 'CASCADE', 'CASCADE'); $this->forge->createTable($config->dbTablePermToUser, true); } //-------------------------------------------------------------------- /** * Drops Table * * @return void */ public function down() { $config = new AauthConfig(); $this->forge->dropForeignKey($config->dbTablePermToUser, $config->dbTablePermToUser . '_perm_id_foreign'); $this->forge->dropForeignKey($config->dbTablePermToUser, $config->dbTablePermToUser . '_user_id_foreign'); $this->forge->dropTable($config->dbTablePermToUser, true); } }