@@ -41,6 +41,7 @@ protected function configure()
41
41
->addOption ('output-dir ' , null , InputOption::VALUE_REQUIRED , 'The output directory ' , self ::DEFAULT_OUTPUT_DIRECTORY )
42
42
->addOption ('migration-table ' , null , InputOption::VALUE_REQUIRED , 'Migration table name ' , self ::DEFAULT_MIGRATION_TABLE )
43
43
->addOption ('connection ' , null , InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED , 'Connection to use ' , array ())
44
+ ->addOption ('table-renaming ' , null , InputOption::VALUE_NONE , 'Detect table renaming ' , null )
44
45
->addOption ('editor ' , null , InputOption::VALUE_OPTIONAL , 'The text editor to use to open diff files ' , null )
45
46
->setName ('migration:diff ' )
46
47
->setAliases (array ('diff ' ))
@@ -85,8 +86,15 @@ protected function execute(InputInterface $input, OutputInterface $output)
85
86
}
86
87
87
88
$ totalNbTables = 0 ;
88
- $ schema = new Schema ();
89
- foreach ($ connections as $ name => $ params ) {
89
+ $ reversedSchema = new Schema ();
90
+
91
+ foreach ($ manager ->getDatabases () as $ appDatabase ) {
92
+
93
+ $ name = $ appDatabase ->getName ();
94
+ if (!$ params = @$ connections [$ name ]) {
95
+ $ output ->writeln (sprintf ('<info>No connection configured for database "%s"</info> ' , $ name ));
96
+ }
97
+
90
98
if ($ input ->getOption ('verbose ' )) {
91
99
$ output ->writeln (sprintf ('Connecting to database "%s" using DSN "%s" ' , $ name , $ params ['dsn ' ]));
92
100
}
@@ -99,14 +107,22 @@ protected function execute(InputInterface $input, OutputInterface $output)
99
107
continue ;
100
108
}
101
109
110
+ $ additionalTables = [];
111
+ foreach ($ appDatabase ->getTables () as $ table ) {
112
+ if ($ table ->getSchema () && $ table ->getSchema () != $ appDatabase ->getSchema ()) {
113
+ $ additionalTables [] = $ table ;
114
+ }
115
+ }
116
+
102
117
$ database = new Database ($ name );
103
118
$ database ->setPlatform ($ platform );
119
+ $ database ->setSchema ($ appDatabase ->getSchema ());
104
120
$ database ->setDefaultIdMethod (IdMethod::NATIVE );
105
121
106
122
$ parser = $ generatorConfig ->getConfiguredSchemaParser ($ conn );
107
- $ nbTables = $ parser ->parse ($ database , $ this );
123
+ $ nbTables = $ parser ->parse ($ database , $ additionalTables );
108
124
109
- $ schema ->addDatabase ($ database );
125
+ $ reversedSchema ->addDatabase ($ database );
110
126
$ totalNbTables += $ nbTables ;
111
127
112
128
if ($ input ->getOption ('verbose ' )) {
@@ -120,27 +136,24 @@ protected function execute(InputInterface $input, OutputInterface $output)
120
136
$ output ->writeln ('No table found in all databases ' );
121
137
}
122
138
123
- $ appDatasFromXml = $ manager ->getDataModels ();
124
- $ appDataFromXml = array_pop ($ appDatasFromXml );
125
-
126
139
// comparing models
127
140
$ output ->writeln ('Comparing models... ' );
141
+ $ tableRenaming = $ input ->getOption ('table-renaming ' );
128
142
129
143
$ migrationsUp = array ();
130
144
$ migrationsDown = array ();
131
- foreach ($ schema ->getDatabases () as $ database ) {
145
+ foreach ($ reversedSchema ->getDatabases () as $ database ) {
132
146
$ name = $ database ->getName ();
133
147
134
148
if ($ input ->getOption ('verbose ' )) {
135
149
$ output ->writeln (sprintf ('Comparing database "%s" ' , $ name ));
136
150
}
137
151
138
- if (!$ appDataFromXml ->hasDatabase ($ name )) {
139
- // FIXME: tables present in database but not in XML
152
+ if (!$ appDataDatabase = $ manager ->getDatabase ($ name )) {
140
153
continue ;
141
154
}
142
155
143
- $ databaseDiff = DatabaseComparator::computeDiff ($ database , $ appDataFromXml -> getDatabase ( $ name ) );
156
+ $ databaseDiff = DatabaseComparator::computeDiff ($ database , $ appDataDatabase , false , $ tableRenaming );
144
157
145
158
if (!$ databaseDiff ) {
146
159
if ($ input ->getOption ('verbose ' )) {
@@ -151,6 +164,13 @@ protected function execute(InputInterface $input, OutputInterface $output)
151
164
152
165
$ output ->writeln (sprintf ('Structure of database was modified in datasource "%s": %s ' , $ name , $ databaseDiff ->getDescription ()));
153
166
167
+ foreach ($ databaseDiff ->getPossibleRenamedTables () as $ fromTableName => $ toTableName ) {
168
+ $ output ->writeln (sprintf (
169
+ '<info>Possible table renaming detected: "%s" to "%s". It will be deleted and recreated. Use --table-renaming to only rename it.</info> ' ,
170
+ $ fromTableName , $ toTableName
171
+ ));
172
+ }
173
+
154
174
$ platform = $ generatorConfig ->getConfiguredPlatform (null , $ name );
155
175
$ migrationsUp [$ name ] = $ platform ->getModifyDatabaseDDL ($ databaseDiff );
156
176
$ migrationsDown [$ name ] = $ platform ->getModifyDatabaseDDL ($ databaseDiff ->getReverseDiff ());
@@ -185,8 +205,11 @@ protected function execute(InputInterface $input, OutputInterface $output)
185
205
*/
186
206
protected function getReverseClass (InputInterface $ input )
187
207
{
188
- $ reverse = strstr ($ input ->getOption ('platform ' ), 'Platform ' , true );
189
- $ reverse = 'Propel \\Generator \\Reverse \\' .$ reverse .'SchemaParser ' ;
208
+ $ reverse = $ input ->getOption ('platform ' );
209
+ if (false !== strpos ($ reverse , 'Platform ' )) {
210
+ $ reverse = strstr ($ input ->getOption ('platform ' ), 'Platform ' , true );
211
+ }
212
+ $ reverse = sprintf ('Propel \\Generator \\Reverse \\%sSchemaParser ' , ucfirst ($ reverse ));
190
213
191
214
return $ reverse ;
192
215
}
0 commit comments