Current section
Files
Jump to
Current section
Files
lib/email/template/migrations/base.exs
defmodule Rivet.Email.Template.Migrations.Base do
@moduledoc false
use Ecto.Migration
def change do
create table(:email_templates, primary_key: false) do
add(:id, :uuid, primary_key: true)
add(:name, :string)
add(:data, :text)
timestamps()
end
end
end