A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.

add migration to postgres sql to fix VARCHAR length to 32

Changed files
+3
migrations
+3
migrations/20250219000000_extend_short_code.sql
···
+
-- PostgreSQL migration
+
ALTER TABLE links ALTER COLUMN short_code TYPE VARCHAR(32);
+