Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support comparing --file options #179

Merged
merged 1 commit into from
Jan 3, 2022
Merged

Support comparing --file options #179

merged 1 commit into from
Jan 3, 2022

Conversation

k0kubun
Copy link
Collaborator

@k0kubun k0kubun commented Jan 3, 2022

Example

$ cat before.sql
CREATE TABLE users (
  id bigint PRIMARY KEY NOT NULL,
  created_at datetime NOT NULL
);

$ cat after.sql
CREATE TABLE users (
  id bigint PRIMARY KEY NOT NULL,
  name varchar(40) DEFAULT NULL,
  created_at datetime NOT NULL
);

$ mysqldef --file before.sql --file after.sql
-- dry run --
ALTER TABLE `users` ADD COLUMN `name` varchar(40) DEFAULT null AFTER `id`;

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.

1 participant