622daf483293385b65e8e2f840dbe288e5676988
[anni] / priv / repo / migrations / 20210105195018_create_data_migrations.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.CreateDataMigrations do
6   use Ecto.Migration
7
8   def change do
9     create_if_not_exists table(:data_migrations) do
10       add(:name, :string, null: false)
11       add(:state, :integer, default: 1)
12       add(:feature_lock, :boolean, default: false)
13       add(:params, :map, default: %{})
14       add(:data, :map, default: %{})
15
16       timestamps()
17     end
18
19     create_if_not_exists(unique_index(:data_migrations, [:name]))
20   end
21 end