Installing neos/googleanalytics 2.0.1 on my Neos 3.0.3 installation.
On the ./neos/administration/googleAnalytics Page got a error: #0: A table or view seems to be missing from the database.
running doctrine:migrate and got the following error:
`Exception in line 128 of /var/www/Packages/Libraries/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php: An exception occurred while executing ‘ALTER TABLE typo3_neos_googleanalytics_domain_model_siteconfiguration ADD CONSTRAINT FK_D675F674694309E4 FOREIGN KEY (site) REFERENCES typo3_neos_domain_model_site (persistence_object_identifier) ON DELETE CASCADE’:
SQLSTATE[HY000]: General error: 1005 Can’t create table neos.#sql-38b_90 (errno: 150 “Foreign key constraint is incorrectly formed”)
I remember I came across some similar issue when upgrading to 3.0.x. It had to do with some naming where the table typo3_neos_googleanalytics_domain_model_siteconfiguration already got renamed to neos... while in the doctrine migration it is still called typo3... I ended up copying the raw sql from the migration, rename typo3 to neos and run it manually in the database. Can’t remember what I did exactly, but maybe this is enough to give you a hint.