Skip to content

Conversation

@tianzhou
Copy link
Contributor

@tianzhou tianzhou commented Aug 5, 2025

No description provided.

@github-actions
Copy link

github-actions bot commented Aug 5, 2025

pgschema Plan Output

Click to expand plan details
Plan: 1 to add, 1 to modify, 1 to drop.

Summary by type:
  tables: 1 to add, 1 to modify, 1 to drop

Tables:
  + addresses
  - orders
  ~ users
    + city (column)

Transaction: true

DDL to be executed:
--------------------------------------------------

DROP TABLE IF EXISTS orders CASCADE;

CREATE TABLE IF NOT EXISTS addresses (
    id integer PRIMARY KEY,
    user_id integer NOT NULL REFERENCES users(id),
    street_address text NOT NULL,
    city text NOT NULL,
    state_province text,
    postal_code text,
    country text DEFAULT 'USA' NOT NULL,
    is_default boolean DEFAULT false
);

ALTER TABLE users ADD COLUMN city text NOT NULL;

This comment was automatically generated by the pgschema Multi File Plan workflow.

@tianzhou tianzhou closed this Aug 12, 2025
@tianzhou tianzhou deleted the feature-1 branch August 12, 2025 11:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants