createTable('{{%feedback}}', [ 'feedback_id' => $this->primaryKey(), 'name' => $this->string(), 'phone' => $this->string() ->notNull(), 'date_add' => $this->integer(), 'ip' => $this->string(), ]); } public function down() { $this->dropTable('{{%feedback}}'); } }