To add a column to an SQLite table only if it doesn't already exist, you can use the following SQL statement:
ALTER TABLE table_name ADD COLUMN IF NOT EXISTS column_name column_definition;
To add a column to an SQLite table only if it doesn't already exist, you can use the following SQL statement:
ALTER TABLE table_name ADD COLUMN IF NOT EXISTS column_name column_definition;