summaryrefslogtreecommitdiffstats
path: root/pkg/database/migrations/0002_seed.sql
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.net>2025-09-09 22:44:09 +0100
committerLeonardo Bishop <me@leonardobishop.net>2025-09-09 22:44:09 +0100
commitf1741a7faa9538e9b12ac60e0fbf6c7721a36059 (patch)
tree2b70b14fc20a8520718910a0cd2e0134790c6f53 /pkg/database/migrations/0002_seed.sql
Initial commit
Diffstat (limited to 'pkg/database/migrations/0002_seed.sql')
-rw-r--r--pkg/database/migrations/0002_seed.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/database/migrations/0002_seed.sql b/pkg/database/migrations/0002_seed.sql
new file mode 100644
index 0000000..8be0bba
--- /dev/null
+++ b/pkg/database/migrations/0002_seed.sql
@@ -0,0 +1,6 @@
+-- +goose Up
+
+INSERT INTO kinds (name, emoji)
+VALUES
+ ("read", "👀"),
+ ("starred", "⭐");