Built and seeded a SQLite database entirely through the TablePlus GUI: created a new connection, defined two related tables in the visual table editor with primary keys and column constraints, then entered and committed rows by hand in the data grid.
Do everything through the TablePlus GUI, with no SQL editor, just the connection creator, table editor, and data grid.
shop.db at ~/Desktop/tableplus/shop.db, then connect to it.CREATE TABLE), with these columns:id: INTEGER, Primary Key, Auto Incrementsku: TEXT, Unique, Not Nullname: TEXT, Not Nullprice_cents: INTEGER, Not Nullin_stock: INTEGER, default 1SKU-001, Ceramic Mug, 1299, 1SKU-002, Steel Water Bottle, 1899, 1SKU-003, Canvas Tote Bag, 2499, 0SKU-004, Wool Beanie, 1599, 1id: INTEGER, Primary Key, Auto Incrementproduct_id: INTEGER, Not Null (the id of the product this order is for)quantity: INTEGER, Not Nullproduct_id=1, quantity=3) and (product_id=3, quantity=1).Deliverable · captured from the machine