mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-13 03:08:40 -04:00
6 lines
182 B
Plaintext
6 lines
182 B
Plaintext
statement ok
|
|
CREATE TABLE inventory (inventory_id INTEGER, name TEXT)
|
|
|
|
statement ok
|
|
INSERT INTO inventory (inventory_id, name) VALUES (1, 'health1'), (2, 'health2'), (3, 'health3')
|