defmodule Scopes.Repo.Migrations.CreateConcepts do use Ecto.Migration def change do create table(:concepts) do add :domain, :string add :class, :string add :item, :string add :data, :map timestamps(type: :utc_datetime) end end end