You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
804 B
34 lines
804 B
<?php namespace Magefly\Aauth\Database\Migrations; |
|
|
|
use CodeIgniter\Database\Migration; |
|
use Magefly\Aauth\Config\Aauth as AauthConfig; |
|
|
|
class Migration_create_group_to_user extends Migration |
|
{ |
|
public function up() |
|
{ |
|
$config = new AauthConfig(); |
|
$this->forge->addField([ |
|
'group_id' => array( |
|
'type' => 'INT', |
|
'constraint' => 11, |
|
'unsigned' => TRUE, |
|
), |
|
'user_id' => array( |
|
'type' => 'INT', |
|
'constraint' => 11, |
|
'unsigned' => TRUE, |
|
), |
|
]); |
|
$this->forge->addKey(array('group_id','user_id'), TRUE); |
|
$this->forge->createTable($config->dbTableGroupToUser, TRUE); |
|
} |
|
|
|
//-------------------------------------------------------------------- |
|
|
|
public function down() |
|
{ |
|
$config = new AauthConfig(); |
|
$this->forge->dropTable($config->dbTableGroupToUser, true); |
|
} |
|
}
|
|
|