clacks/priv/repo/migrations/20190928214725_create_objec...

12 lines
180 B
Elixir
Raw Normal View History

2019-09-28 22:30:55 +00:00
defmodule Clacks.Repo.Migrations.CreateObjects do
use Ecto.Migration
def change do
create table(:objects) do
add :data, :jsonb
timestamps()
end
end
end