Fix mix format and format migrations too
Signed-off-by: Thomas Citharel <tcit@tcit.fr> Fix credo warnings Signed-off-by: Thomas Citharel <tcit@tcit.fr> Show elixir version Signed-off-by: Thomas Citharel <tcit@tcit.fr> Also lint migrations Signed-off-by: Thomas Citharel <tcit@tcit.fr> Reset allow failure to false Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
@@ -3,16 +3,16 @@ defmodule Mobilizon.Repo.Migrations.AddBotsTable do
|
||||
|
||||
def up do
|
||||
create table(:bots) do
|
||||
add :source, :string, null: false
|
||||
add :type, :string, default: "ics"
|
||||
add :actor_id, references(:actors, on_delete: :delete_all), null: false
|
||||
add :user_id, references(:users, on_delete: :delete_all), null: false
|
||||
add(:source, :string, null: false)
|
||||
add(:type, :string, default: "ics")
|
||||
add(:actor_id, references(:actors, on_delete: :delete_all), null: false)
|
||||
add(:user_id, references(:users, on_delete: :delete_all), null: false)
|
||||
|
||||
timestamps()
|
||||
end
|
||||
end
|
||||
|
||||
def down do
|
||||
drop table(:bots)
|
||||
drop(table(:bots))
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user