tradex/priv/repo/migrations/20250127162154_add_accounts_table.exs

16 lines
395 B
Elixir

defmodule Tradex.Repo.Migrations.AddAccountsTable do
use Ecto.Migration
def change do
create table(:accounts, primary_key: false) do
add :id, :binary_id, primary_key: true
add :name, :string, null: false
add :owner_id, references(:users, type: :binary_id), null: false
timestamps(type: :utc_datetime)
end
create index(:accounts, [:owner_id])
end
end