Skip to content

Commit 61b0468

Browse files
rename date to datetime in protocol (#34)
## What is the goal of this PR? To synchronise the changes made across our repositories, `date` should be renamed to `datetime` everywhere. ## What are the changes implemented in this PR? * Rename `date` to `datetime` in `ValueObject`
1 parent 1683f49 commit 61b0468

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

session/Concept.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ message AttributeType {
499499
LONG = 3;
500500
FLOAT = 4;
501501
DOUBLE = 5;
502-
DATE = 6;
502+
DATETIME = 6;
503503
}
504504

505505
message Create {
@@ -698,6 +698,6 @@ message ValueObject {
698698
int64 long = 4;
699699
float float = 5;
700700
double double = 6;
701-
int64 date = 7; // time since epoch in milliseconds
701+
int64 datetime = 7; // time since epoch in milliseconds
702702
}
703703
}

0 commit comments

Comments
 (0)