mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-03-13 11:58:02 +00:00
6 lines
87 B
Plaintext
6 lines
87 B
Plaintext
|
|
PRAGMA journal_mode = wal;
|
|
CREATE TABLE t1(a, b);
|
|
INSERT INTO t1 VALUES(1, 2);
|
|
|