createTable('{{%subscribe}}', [ 'id' => $this->primaryKey(), 'email' => $this->string()->notNull(), 'sale' => $this->integer()->notNull(), 'sand' => $this->smallInteger()->notNull()->defaultValue(0), ]); } public function down() { $this->dropTable('{{%subscribe}}'); } }