Add column

yes, see https://www.w3schools.com/sql/sql_alter.asp

for example
Code:
ALTER TABLE Units ADD COLUMN Personnel integer DEFAULT '0';
Of course you'll have to handle what to do with your new column in Lua scripts.
 
Back
Top Bottom