Files
SpacetimeDB/crates/sqltest/test/basic/test_data.slt
Tyler Cloutier 44df6c6e7d Initial commit
2023-08-01 23:16:37 +02:00

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')