defmodule Clacks.Repo.Migrations.CreateObjects do
use Ecto.Migration
def change do
create table(:objects) do
add :data, :jsonb
timestamps()
end