This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- - PSQL script - - run as postgres - - | |
drop table if exists bug2485move; | |
drop sequence if exists bug2485move_seq; | |
create sequence bug2485move_seq; | |
select r_table_schema as schema, r_table_name as name, 'bug2485___'||nextval('bug2485move_seq')::text as bug2485move into public.bug2485move from raster_columns; |