14 lines
277 B
Elixir
14 lines
277 B
Elixir
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
|