F Feagle7 Chieftain Joined Oct 6, 2016 Messages 5 Nov 6, 2020 #1 How add column in table. Is it possible?
Gedemon Modder Super Moderator Joined Oct 4, 2004 Messages 12,800 Location France Nov 6, 2020 #2 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.
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.