main
Data tableMigration run against the main data table when the project is imported.
bitly.links
| Column | Type | Constraints |
|---|---|---|
| id | uuid | not nullprimary keydefault gen_random_uuid() |
| slug | text | not null |
| target_url | text | not null |
| title | text | |
| is_active | boolean | default true |
| created_at | timestamp with time zone | default now() |
bitly.clicks
| Column | Type | Constraints |
|---|---|---|
| id | uuid | not nullprimary keydefault gen_random_uuid() |
| link_id | uuid | not null→ links |
| clicked_at | timestamp with time zone | default now() |
| referrer | text | |
| user_agent | text |