| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
pgschema Plan Output📋 Plan artifact created: pgschema-singlefile-plan-12 This plan will be used automatically when the PR is merged. Click to expand plan detailstime=2025-08-12T11:15:28.339Z level=DEBUG msg="Attempting database connection" host=localhost port=5432 database=testdb user=postgres sslmode=prefer application_name=pgschema
time=2025-08-12T11:15:28.346Z level=DEBUG msg="Database connection established successfully"
Plan: 2 to modify.
Summary by type:
tables: 2 to modify
Tables:
~ orders
- amount (column)
~ users
+ age (column)
+ users_age_check (constraint)
Transaction: true
DDL to be executed:
--------------------------------------------------
ALTER TABLE orders DROP COLUMN amount;
ALTER TABLE users ADD COLUMN age integer;
ALTER TABLE users
ADD CONSTRAINT users_age_check CHECK (age >= 0);
This comment was automatically generated by the pgschema Single File Plan workflow. |
Sorry, something went wrong.
✅ Schema Changes Applied Successfully!📋 Applied using plan: pgschema-singlefile-plan-12 📋 Applied Changestime=2025-08-12T11:17:04.497Z level=DEBUG msg="Attempting database connection" host=localhost port=5432 database=testdb user=postgres sslmode=prefer application_name=pgschema-github-action-apply
time=2025-08-12T11:17:04.504Z level=DEBUG msg="Database connection established successfully"
Plan: 2 to modify.
Summary by type:
tables: 2 to modify
Tables:
~ orders
- amount (column)
~ users
+ age (column)
+ users_age_check (constraint)
Transaction: true
DDL to be executed:
--------------------------------------------------
ALTER TABLE orders DROP COLUMN amount;
ALTER TABLE users ADD COLUMN age integer;
ALTER TABLE users
ADD CONSTRAINT users_age_check CHECK (age >= 0);
Applying changes...
time=2025-08-12T11:17:04.584Z level=DEBUG msg="Attempting database connection" host=localhost port=5432 database=testdb user=postgres sslmode=prefer application_name=pgschema-github-action-apply
time=2025-08-12T11:17:04.591Z level=DEBUG msg="Database connection established successfully"
Changes applied successfully!
Database: testdb This comment was automatically generated by the pgschema Single File Apply workflow. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
No description provided.