We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 702b155 commit 4b35b79Copy full SHA for 4b35b79
src/test/java/org/javawebstack/orm/test/DatesTest.java
@@ -26,7 +26,7 @@ public void testTimes() throws ORMConfigurationException {
26
timesModel.save();
27
28
timesModel = Repo.get(TimesModel.class).get(timesModel.id);
29
- assertNotNull(timesModel.cratedAt);
+ assertNotNull(timesModel.createdAt);
30
31
// updated_at test
32
timesModel.exampleField = " ";
@@ -52,7 +52,7 @@ public static class TimesModel extends Model {
52
public String exampleField;
53
54
@Column
55
- public Timestamp cratedAt;
+ public Timestamp createdAt;
56
57
58
public Timestamp updatedAt;
0 commit comments