From 26b3b20becd660f72e759f8d5c6e986f5d7c3ded Mon Sep 17 00:00:00 2001 From: Greg Rychlewski Date: Tue, 12 Dec 2023 14:49:13 -0500 Subject: [PATCH] Add read only field to migration (#581) --- integration_test/support/migration.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/integration_test/support/migration.exs b/integration_test/support/migration.exs index fe4d62fc..971c68e4 100644 --- a/integration_test/support/migration.exs +++ b/integration_test/support/migration.exs @@ -27,6 +27,7 @@ defmodule Ecto.Integration.Migration do add :intensity, :float add :author_id, :integer add :posted, :date + add :read_only, :string timestamps(null: true) end