File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ protected function createTables()
167
167
->primaryKey ('series_id ' )
168
168
);
169
169
170
- });
170
+ }, true );
171
171
172
172
$ this ->print ('Table `series` has been created. ' );
173
173
@@ -184,7 +184,7 @@ protected function createTables()
184
184
->primaryKey (['series_id ' , 'season_id ' ])
185
185
);
186
186
187
- });
187
+ }, true );
188
188
189
189
$ this ->print ('Table `seasons` has been created. ' );
190
190
@@ -201,7 +201,7 @@ protected function createTables()
201
201
->primaryKey (['series_id ' , 'season_id ' , 'episode_id ' ])
202
202
);
203
203
204
- });
204
+ }, true );
205
205
206
206
$ this ->print ('Table `episodes` has been created. ' );
207
207
}
@@ -215,7 +215,7 @@ protected function describeTable($table)
215
215
216
216
return $ session ->describeTable ($ table );
217
217
218
- });
218
+ }, true );
219
219
220
220
$ columns = [];
221
221
You can’t perform that action at this time.
0 commit comments