i write a app with appcelerator titanium and want to add an attribute in a model class. I must write a migration to prevent android errors with "..has no column.."
I just want to drop the table "favorites":
migration.up = function(migrator) {
migrator.dropTable("favorites");
};
Why it doesn't work and the error message is still where?
migrator.createTable(...) also didn't work