|
- <?php
-
- use yii\db\Schema;
- use yii\db\Migration;
-
- class m161014_084709_table_user_boulangerie extends Migration
- {
- public function up()
- {
- $this->createTable('user_boulangerie', [
- 'id_user' => Schema::TYPE_INTEGER . ' NOT NULL',
- 'id_boulangerie' => Schema::TYPE_INTEGER . ' NOT NULL',
- 'PRIMARY KEY (`id_user`, `id_boulangerie`)'
- ]);
- }
-
- public function down()
- {
- $this->dropTable('user_boulangerie');
- }
- }
|