@@ -0,0 +1,17 @@
|
||||
defmodule Eventos.Repo.Migrations.AddAvatarAndBannerToActor do
|
||||
use Ecto.Migration
|
||||
|
||||
def up do
|
||||
alter table(:actors) do
|
||||
add :avatar_url, :string
|
||||
add :banner_url, :string
|
||||
end
|
||||
end
|
||||
|
||||
def down do
|
||||
alter table(:actors) do
|
||||
remove :avatar_url
|
||||
remove :banner_url
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,15 @@
|
||||
defmodule Eventos.Repo.Migrations.MakeActorPublicKeyNullable do
|
||||
use Ecto.Migration
|
||||
|
||||
def up do
|
||||
alter table(:actors) do
|
||||
modify :public_key, :text, null: true
|
||||
end
|
||||
end
|
||||
|
||||
def down do
|
||||
alter table(:actors) do
|
||||
modify :public_key, :text, null: false
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user