You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I change this properties names? I'm trying to use the same database that I use in a cakephp application and cakephp use "created" and "modified"...
The text was updated successfully, but these errors were encountered:
As far as i know, createdAt and updatedAt are system properties which are based on flag, that can be changed with 'model.config.useTimestamps = false'.
After that, you should use your own defined properties in model
this.defineProperties({
created: {type: 'datetime'}
});
How can I change this properties names? I'm trying to use the same database that I use in a cakephp application and cakephp use "created" and "modified"...
The text was updated successfully, but these errors were encountered: