I tried running this: ```bash sqlite-utils create-table compound.db compound \ category text id integer value text --pk category --pk id ``` And got this schema: ```sql CREATE TABLE [compound] ( [category] TEXT, [id] INTEGER PRIMARY KEY, [value] TEXT ); ```