Topic: Altering a SQL column type
Just wondering if there's any way to alter a column type once it's been created? For example, if this column was created as:
download_id SERIAL,
could you alter it to:
download_id INTEGER NOT NULL DEFAULT 0,
afterwards?
Cheers,
Matt