new(core.gbapp): Timestamp fields are now default.

This commit is contained in:
me@rodrigorodriguez.com 2024-10-15 09:08:53 -03:00
parent 29712b9528
commit bd85f1e8f3

View file

@ -394,7 +394,10 @@ export class GBVMService extends GBService {
}
}
seq.define(tableName, t.fields);
seq.define(tableName, t.fields, {
timestamps: true,
});
// New table checking, if needs sync.
let tables;