1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-27 05:15:11 +01:00
pleroma/priv/repo/migrations/20170321074832_create_object.exs
2017-03-21 09:21:52 +01:00

13 lines
187 B
Elixir

defmodule Pleroma.Repo.Migrations.CreatePleroma.Object do
use Ecto.Migration
def change do
create table(:objects) do
add :data, :map
timestamps()
end
end
end