Add backups table

This commit is contained in:
Egor Kislitsyn 2020-09-02 20:21:33 +04:00
commit 4f3a633745
No known key found for this signature in database
GPG key ID: 1B49CB15B71E7805
3 changed files with 141 additions and 34 deletions

View file

@ -0,0 +1,17 @@
defmodule Pleroma.Repo.Migrations.CreateBackups do
use Ecto.Migration
def change do
create_if_not_exists table(:backups) do
add(:user_id, references(:users, type: :uuid, on_delete: :delete_all))
add(:file_name, :string, null: false)
add(:content_type, :string, null: false)
add(:processed, :boolean, null: false, default: false)
add(:file_size, :bigint)
timestamps()
end
create_if_not_exists(index(:backups, [:user_id]))
end
end