1
1
mirror of https://github.com/plausible/analytics.git synced 2024-12-18 14:51:57 +03:00
analytics/priv/repo/migrations/20200122150130_add_shared_links.exs

14 lines
313 B
Elixir
Raw Normal View History

defmodule Plausible.Repo.Migrations.AddSharedLinks do
use Ecto.Migration
def change do
create table(:shared_links) do
add :site_id, references(:sites, on_delete: :delete_all), null: false
add :slug, :string, null: false
add :password_hash, :string
timestamps()
end
end
end