mirror of
https://github.com/plausible/analytics.git
synced 2024-11-30 00:58:54 +03:00
81c12884cd
* Add elixir action * Format the codebase * Add postgresql * Postgres config * Run postgres on localhost * Add clickhouse to CI
10 lines
202 B
Elixir
10 lines
202 B
Elixir
defmodule Plausible.Repo.Migrations.AddThemePrefToUsers do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add_if_not_exists(:theme, :string, default: "system")
|
|
end
|
|
end
|
|
end
|