Fixed an issue creating extensions 'postgis_topology', and

'postgis_tiger_geocoder'.

Current implementation changes the schema name, whenever we chance the
name, which is wrong. We should have not change the schema for this
event.

Thanks Fahar Abbas for reporting.
pull/3/head
Ashesh Vashi 2016-05-14 15:42:22 +05:30
parent 1aeab98a2b
commit 491bd3605b
1 changed files with 1 additions and 3 deletions

View File

@ -154,9 +154,7 @@ function($, _, S, pgAdmin, pgBrowser) {
'version' : '',
'relocatable': (
(!_.isNull(d.relocatable[0]) && !_.isUndefined(d.relocatable[0])) ?
d.relocatable[0]: ''),
'schema': ((!_.isNull(d.schema[0]) &&
!_.isUndefined(d.schema[0])) ? d.schema[0]: '')
d.relocatable[0]: '')
};
this.model.set(changes);
}