Skip to content

Commit

Permalink
Add sample db
Browse files Browse the repository at this point in the history
$ sqlite3 web/main.db
SQLite version 3.43.2 2023-10-10 13:08:14
Enter ".help" for usage hints.
sqlite> CREATE TABLE greetings ( id INTEGER PRIMARY KEY, value TEXT_TYPE NOT NULL );
sqlite> INSERT INTO greetings(value) VALUES('hello');
sqlite> INSERT INTO greetings(value) VALUES('hi');
sqlite> INSERT INTO greetings(value) VALUES('hey');
sqlite> SELECT * FROM greetings;
1|hello
2|hi
3|hey
  • Loading branch information
niku committed Dec 31, 2023
1 parent 113e3b5 commit 5e1928e
Showing 1 changed file with 0 additions and 0 deletions.
Binary file added web/main.db
Binary file not shown.

0 comments on commit 5e1928e

Please sign in to comment.