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

docs: fix mention of dont-drop-columns option #445

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/mix/tasks/ash_postgres.generate_migrations.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Mix.Tasks.AshPostgres.GenerateMigrations do
* `migration-path` - a custom path to store the migrations, defaults to "priv/repo_name/migrations".
Migrations are stored in a folder for each repo, so `priv/repo_name/migrations`
* `tenant-migration-path` - Same as `migration_path`, except for tenant-specific migrations
* `drop-columns` - whether or not to drop columns as attributes are removed. See below for more
* `dont-drop-columns` - whether or not to drop columns as attributes are removed. See below for more
* `name` -
names the generated migrations, prepending with the timestamp. The default is `migrate_resources_<n>`,
where `<n>` is the count of migrations matching `*migrate_resources*` plus one.
Expand Down
Loading