I have created the following table, but now want to insert the data in things list which i could not because CQL want me to specify the Event time. I dont have that but yes I have OrderId .
What's best way to handle this situation ?
CREATE TABLE "Orders_By_Time" (OrderId text, EventTime timestamp, ThingsList list, PRIMARY KEY (OrderId, EventTime) ) WITH CLUSTERING ORDER BY (EventTime DESC);
Thanks,