docs: update walkthrough with launch instructions and test credentials
This commit is contained in:
parent
634d0db22f
commit
9225a1693b
2 changed files with 3 additions and 4 deletions
|
|
@ -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;
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue