Can you generate a migration from an existing table with Doctrine? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:29:17Z http://stackoverflow.com/feeds/question/296078 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/296078/can-you-generate-a-migration-from-an-existing-table-with-doctrine 1 Can you generate a migration from an existing table with Doctrine? D-Rock 2008-11-17T16:30:52Z 2008-11-17T19:54:35Z <p>Is it possible have a migration script automatically generate from a table schema in Doctrine?</p> <p>For example, during heavy development of new features, I will oftern build out my tables first while writing the initial code. I usually don't create a migration to start because the definition of the table may change as the feature is still in its infant stages. Once the feature is ready to commit I will write a migration to generate the table structure for the new feature. Often, there will be several new tables.</p> <p>Call me lazy but it would be awesome if could have those migrations built automagically.</p> <p>For example:</p> <p>doctrine build-migration table_name</p> <p>Does something exist to accomplish something like this?</p> http://stackoverflow.com/questions/296078/can-you-generate-a-migration-from-an-existing-table-with-doctrine/296673#296673 1 Answer by Ciaran McNulty for Can you generate a migration from an existing table with Doctrine? Ciaran McNulty 2008-11-17T19:54:35Z 2008-11-17T19:54:35Z <p>This (or something like it) is present in Doctrine 1.1, you can get a preview version from the doctrine site.</p> <p>See: <a href="http://www.doctrine-project.org/blog/new-to-migrations-in-1-1" rel="nofollow">http://www.doctrine-project.org/blog/new-to-migrations-in-1-1</a></p>