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 42ac35de1d
commit 85fe1cf444

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;