m170928_141247_create_persone_table.php 643 Bytes
<?php
    
    use yii\db\Migration;
    
    /**
     * Handles the creation of table `persone`.
     */
    class m170928_141247_create_persone_table extends Migration
    {
        /**
         * @inheritdoc
         */
        public function up()
        {
            $this->createTable(
                'persone',
                [
                    'id'       => $this->primaryKey(),
                    'image_id' => $this->integer(),
                ]
            );
        }
        
        /**
         * @inheritdoc
         */
        public function down()
        {
            $this->dropTable('persone');
        }
    }