createTable('{{%specialization}}', [ 'specialization_id' => $this->primaryKey(), 'specialization_pid' => $this->integer(), 'specialization_name' => $this->string(255)->notNull() ], $tableOptions); } public function down() { $this->dropTable('{{%specialization}}'); } }