|
- <?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' => 'pk',
- 'id_user' => Schema::TYPE_INTEGER . ' NOT NULL',
- 'id_boulangerie' => Schema::TYPE_INTEGER . ' NOT NULL',
- ]);
-
- }
-
- public function down()
- {
- $this->dropTable('user_boulangerie');
- }
- }
|