We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f11efa commit d65f01fCopy full SHA for d65f01f
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