Skip to content

Commit acf275d

Browse files
committed
chore: schema needs update
1 parent 4fa0e0f commit acf275d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ami-release-nix.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ name: Release AMI Nix
33
on:
44
push:
55
branches:
6-
#- develop
7-
#- release/*
8-
- sam/15-16-ghactions
6+
- develop
7+
- release/*
98
paths:
109
- '.github/workflows/ami-release-nix.yml'
1110
- 'common-nix.vars.pkr.hcl'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,6 @@ jobs:
161161
docker compose -f migrations/docker-compose.yaml up db dbmate --abort-on-container-exit
162162
if ! git diff --exit-code --quiet migrations/schema.sql; then
163163
echo "Detected changes in schema.sql:"
164-
git diff
164+
git diff migrations/schema.sql
165165
exit 1
166166
fi

migrations/schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ COMMENT ON TABLE auth.users IS 'Auth: Stores user login data within a secure sch
737737
--
738738

739739
CREATE TABLE public.schema_migrations (
740-
version character varying(255) NOT NULL
740+
version character varying(128) NOT NULL
741741
);
742742

743743

0 commit comments

Comments
 (0)