mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 05:37:59 +01:00
format
This commit is contained in:
parent
4be6e23400
commit
8f3965b9f5
1 changed files with 11 additions and 3 deletions
|
@ -2,8 +2,16 @@ defmodule Philomena.Repo.Migrations.AddBanDurationConstraints do
|
|||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create constraint("user_bans", "user_ban_duration_must_be_valid", check: "valid_until < '4000-01-01'")
|
||||
create constraint("subnet_bans", "subnet_ban_duration_must_be_valid", check: "valid_until < '4000-01-01'")
|
||||
create constraint("fingerprint_bans", "fingerprint_ban_duration_must_be_valid", check: "valid_until < '4000-01-01'")
|
||||
create constraint("user_bans", "user_ban_duration_must_be_valid",
|
||||
check: "valid_until < '4000-01-01'"
|
||||
)
|
||||
|
||||
create constraint("subnet_bans", "subnet_ban_duration_must_be_valid",
|
||||
check: "valid_until < '4000-01-01'"
|
||||
)
|
||||
|
||||
create constraint("fingerprint_bans", "fingerprint_ban_duration_must_be_valid",
|
||||
check: "valid_until < '4000-01-01'"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue