We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f11efa + d65f01f commit cf5f96dCopy full SHA for cf5f96d
priv/repo/migrations/20200519230108_ignore_newbies.exs
@@ -0,0 +1,9 @@
1
+defmodule Epoch.Repo.Migrations.IgnoreNewbies do
2
+ use Ecto.Migration
3
+ @schema_prefix "users"
4
+ def change do
5
+ alter table(:preferences, [prefix: @schema_prefix]) do
6
+ add :ignore_newbies, :boolean, default: true
7
+ end
8
9
+end
0 commit comments