Add hook and test for add column, add wiki reference in README

This commit is contained in:
Sandro Santilli
2013-10-22 17:11:02 +02:00
parent 938669387c
commit cbda4518f7
3 changed files with 13 additions and 17 deletions

View File

@@ -16,4 +16,6 @@ alter table c.t3 rename column the_geom_webmercator to webmerc2;
select * from c.t3;
alter table c.t3 drop column the_geom_webmercator;
select * from c.t3;
alter table c.t3 add column id2 int;
select * from c.t3;
drop schema c cascade;