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