blob: daeef5f49dfbfc7410233a320748a160d25e7681 [file] [log] [blame]
# Create a table
CREATE TABLE IF NOT EXISTS store.shopping_cart (
userid text PRIMARY KEY,
item_count int,
last_update_timestamp timestamp
);