blob: b184672ad6a578b653a8469397f8efa861338994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
defmodule Pleroma.Repo.Migrations.CreatePleroma.Object do
use Ecto.Migration
def change do
create_if_not_exists table(:objects) do
add :data, :map
timestamps()
end
end
end
|