diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# Schema +# Soil Moisture Schema CREATE TABLE sm_by_day ( device text, @@ -11,6 +11,17 @@ ) ); +# Raw Schema + + CREATE TABLE raw_record ( + day text, + timestamp timestamp, + records list<frozen<tuple<text, text>>>, + PRIMARY KEY ( + (day), + timestamp + ) + ); # Create Schema |