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

m150318_155827_table_points_vente.php 387B

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