Hey, I created a new .sq file, which has CREATE TABLE LastModificationDate(lastModificationDate TEXT NOT NULL);
This causes a crash when testing against our production app as it says LastModificationDate.
no such table: LastModificationDate: , while compiling: SELECT * FROM LastModificationDate
I'm not sure how I am meant to migrate this new table, in the .sqm file I don't think I'm altering anything as its actually just a new table, so should I be creating the table in the .sqm?
If so, how does that work with the functions that exist in LastModificationDate such as insert/get/delete