Skip to content

Commit

Permalink
Split missing column to another migration
Browse files Browse the repository at this point in the history
  • Loading branch information
alxlion committed Dec 23, 2024
1 parent 9f0050a commit bc8e9df
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
defmodule Claper.Repo.Migrations.AddLtiResourceIdToQuizzes do
use Ecto.Migration

def change do
alter table(:quizzes) do
add :lti_resource_id, references(:lti_13_resources, on_delete: :delete_all)
end
end
end

0 comments on commit bc8e9df

Please sign in to comment.