PostGIS Basics - Part 2 - Hello World
SELECT AddGeometryColumn('public', 'table','column', 4269, 'POINT', 2)
This will add a new column to the table and add an entry to the metadata table (the 4269 specifies my reference system, more on that below). It will also add a column to "table" and several constraint checks on the new co...