1
0
mirror of synced 2025-01-23 08:41:41 +03:00
doctrine2/sandbox/migrations/011_add_user_group.class.php

38 lines
584 B
PHP

<?php
/**
* This class has been auto-generated by the Doctrine ORM Framework
*/
class AddUserGroup extends Doctrine_Migration
{
public function up()
{
$this->createTable('user_group', array (
'user_id' =>
array (
'primary' => true,
'type' => 'integer',
'length' => 11,
),
'group_id' =>
array (
'primary' => true,
'type' => 'integer',
'length' => 11,
),
), array (
'indexes' =>
array (
),
'primary' =>
array (
0 => 'user_id',
1 => 'group_id',
),
));
}
public function down()
{
$this->dropTable('user_group');
}
}