mix aludel.install (aludel v0.2.0)

Copy Markdown View Source

Installs Aludel by copying migrations to the host application.

Usage

$ mix aludel.install

This task will:

  1. Copy all Aludel migrations to your app's priv/repo/migrations/ directory
  2. Add timestamp prefixes to prevent conflicts
  3. Show you what was copied

Example

$ mix aludel.install
* copying priv/repo/migrations/20240101000001_create_prompts.exs
* copying priv/repo/migrations/20240101000002_create_runs.exs
...

After running this task, run mix ecto.migrate to apply the migrations.