mirror of
https://github.com/plausible/analytics.git
synced 2024-12-02 07:38:47 +03:00
11 lines
286 B
Elixir
11 lines
286 B
Elixir
|
defmodule Plausible.Repo.Migrations.AddSentRenewalNotifications do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:sent_renewal_notifications) do
|
||
|
add :user_id, references(:users), null: false, on_delete: :delete_all
|
||
|
add :timestamp, :naive_datetime
|
||
|
end
|
||
|
end
|
||
|
end
|