tx.executeSql("ALTER TABLE mytable ADD time VARCHAR NOT NULL BEFORE description");
could not prepare statement (1 near "BEFORE": syntax error)
tx.executeSql("ALTER TABLE mytable ADD time VARCHAR NOT NULL");
could not prepare statement (1 Cannot add a NOT NULL column with default value NULL)
ALTER TABLE mytable ADD time VARCHAR NOT NULL DEFAULT ''