ygrek / sqlgg

SQL Guided (code) Generator
https://ygrek.org/p/sqlgg/
GNU General Public License v2.0
62 stars 20 forks source link

`ALTER TABLE <table> CHANGE [COLUMN] <column>` on missing columns #87

Closed cyberhuman closed 4 years ago

cyberhuman commented 4 years ago

sqlgg accepts this:

CREATE TABLE test ( foo INTEGER );
-- the following succeeds, although there is no column named "bar"
ALTER TABLE test CHANGE bar baz INTEGER;