Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Created July 8, 2017 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/639f5f884a064f2d995d076de6c50795 to your computer and use it in GitHub Desktop.
Save shankardevy/639f5f884a064f2d995d076de6c50795 to your computer and use it in GitHub Desktop.
defmodule Mango.Repo.Migrations.CreateOrders do
use Ecto.Migration
def change do
create table(:orders) do
add :status, :string
add :total, :decimal
add :line_items, {:array, :map}
timestamps()
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment