write statement that will alter table and add new column in sql lite code example
Example 1: sqlite alter table add column
ALTER TABLE table_name ADD COLUMN new_column_name column_type
Example 2: Add colum sqlite table
ALTER TABLE employees
ADD status VARCHAR;