Some checks are pending
Build and Publish / build-release (push) Waiting to run
13 lines
330 B
Elixir
13 lines
330 B
Elixir
defmodule PolicyService.Repo.Migrations.CreateProjectionVersions do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:projection_versions, primary_key: false) do
|
|
add(:projection_name, :text, primary_key: true)
|
|
add(:last_seen_event_number, :bigint)
|
|
|
|
timestamps(type: :naive_datetime_usec)
|
|
end
|
|
end
|
|
end
|