Skip to content

Commit 9527ed6

Browse files
authored
Migration: add strict_order to funnels (#6238)
1 parent c2a7edc commit 9527ed6

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
defmodule Plausible.Repo.Migrations.AddStrictOrderToFunnels do
2+
use Ecto.Migration
3+
4+
def change do
5+
alter table(:funnels) do
6+
add :strict_order, :boolean, null: false, default: false
7+
end
8+
end
9+
end

0 commit comments

Comments
 (0)