fp/services/bright/priv/repo/migrations/20241230002702_create_carts...

14 lines
246 B
Elixir

defmodule Bright.Repo.Migrations.CreateCarts do
use Ecto.Migration
def change do
create table(:carts) do
add :user_uuid, :uuid
timestamps(type: :utc_datetime)
end
create unique_index(:carts, [:user_uuid])
end
end