16 lines
326 B
Elixir
16 lines
326 B
Elixir
|
defmodule Frenzy.Repo.Migrations.CreateFervorClients do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:fervor_clients) do
|
||
|
add :client_name, :string
|
||
|
add :website, :string
|
||
|
add :redirect_uri, :string
|
||
|
add :client_id, :string
|
||
|
add :client_secret, :string
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
end
|
||
|
end
|