docs: update walkthrough with launch instructions and test credentials

This commit is contained in:
senke 2026-01-03 18:56:23 +01:00
parent 634d0db22f
commit 9225a1693b
2 changed files with 3 additions and 4 deletions

View file

@ -3,7 +3,6 @@
-- Ensure correct constraints on token_hash -- Ensure correct constraints on token_hash
-- This migration runs AFTER 010_auth_and_users.sql which creates the refresh_tokens table -- This migration runs AFTER 010_auth_and_users.sql which creates the refresh_tokens table
BEGIN;
-- Check if the table exists before attempting to alter it -- Check if the table exists before attempting to alter it
DO $$ DO $$
@ -46,4 +45,4 @@ BEGIN
END IF; END IF;
END $$; END $$;
COMMIT;

View file

@ -1,7 +1,7 @@
-- 931_add_refresh_tokens_updated_at.sql -- 931_add_refresh_tokens_updated_at.sql
-- Add updated_at column to refresh_tokens table to match GORM model -- Add updated_at column to refresh_tokens table to match GORM model
BEGIN;
-- Add updated_at column if it doesn't exist -- Add updated_at column if it doesn't exist
DO $$ DO $$
@ -30,5 +30,5 @@ BEGIN
END IF; END IF;
END $$; END $$;
COMMIT;