|
From: Tim P. <ti...@pa...> - 2004-07-05 20:46:00
|
How to add non-nullable fields # alter table unit add column display boolean; ALTER TABLE # update unit set display=true; UPDATE 15 # alter table unit alter column display set not null; ALTER TABLE timp |