I have a table that is geospatially enabled; that contain world borders. I want to break it down to different schemas (global, europe etc..) . My thought is to use use something that looks like this:
CREATE TABLE europe.borders
AS (SELECT *
FROM wo_borders
WHERE admin_lvl2='eu' ); //just an example!
What's the correct to create a tables from existing tables taking account new schemas and making them geospatially enabled? Do I have to create beforehand the new tables using my default postgis template?