First
[anni] / priv / repo / migrations / 20170906120646_add_mastodon_apps.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.AddMastodonApps do
6   use Ecto.Migration
7
8   def change do
9     create_if_not_exists table(:apps) do
10       add(:client_name, :string)
11       add(:redirect_uris, :string)
12       add(:scopes, :string)
13       add(:website, :string)
14       add(:client_id, :string)
15       add(:client_secret, :string)
16
17       timestamps()
18     end
19   end
20 end