選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

24 行
452B

  1. <?php
  2. use yii\db\Schema;
  3. use yii\db\Migration;
  4. class m161014_084709_table_user_boulangerie extends Migration
  5. {
  6. public function up()
  7. {
  8. $this->createTable('user_boulangerie', [
  9. 'id' => 'pk',
  10. 'id_user' => Schema::TYPE_INTEGER . ' NOT NULL',
  11. 'id_boulangerie' => Schema::TYPE_INTEGER . ' NOT NULL',
  12. ]);
  13. }
  14. public function down()
  15. {
  16. $this->dropTable('user_boulangerie');
  17. }
  18. }