Postby Pacerier » Thu May 04, 2017 2:15 pm
I'm using each note as a row in a database.
For users that do this, they too will need creation date to be recognized as a unique info.
Eg, I store row1:
data: ABC, created-date: D1.
Then, somewhere down the road, I store row2:
data: ABC, created-date: D2.
Then, somewhere down the road, I store row3:
data: ABC, created-date: D3.
The database should look like this:
data: ABC, created-date: D1.
data: ABC, created-date: D2.
data: ABC, created-date: D3.
It's 3 unique rows! You can't just collapse them into one row.
---