You can specify a default value for the column when creating the table. (It doesn't look like you can add a default value using the ALTER statement, so you have to recreate the table.)
CREATE TABLE your_table_name (MainContactName TEXT NOT NULL DEFAULT '')
Newlines that are inserted without the value specified for MainContactName will have an empty string for the MainContactName field. You can try to explicitly insert zeros in this field, but requests will explode due to the NOT NULL constraint.
Cafe
source share