mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 04:32:57 +03:00
11 lines
254 B
Elixir
11 lines
254 B
Elixir
defmodule Plausible.Repo.Migrations.AddFeedbackEmails do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:feedback_emails) do
|
|
add :user_id, references(:users), null: false
|
|
add :timestamp, :naive_datetime, null: false
|
|
end
|
|
end
|
|
end
|