# `Jido.Ecto.Migrations`
[🔗](https://github.com/agentjido/jido_ecto/blob/v1.0.0/lib/jido_ecto/migrations.ex#L1)

Migration helpers for `jido_ecto`.

## Example

    defmodule MyApp.Repo.Migrations.CreateJidoStorage do
      use Ecto.Migration

      def change do
        require Jido.Ecto.Migrations
        Jido.Ecto.Migrations.create_storage_tables(version: 1)
      end
    end

## Options

- `:version` - required storage schema version
- `:prefix` - database prefix or schema name passed through to Ecto.
  PostgreSQL schemas are created automatically when a prefix is provided.

# `create_storage_tables`
*macro* 

```elixir
@spec create_storage_tables(keyword()) :: Macro.t()
```

Creates the storage tables used by `Jido.Ecto.Storage`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
