From 3bc39dc1aec866de45db6e20a5ff83f3d63daa27 Mon Sep 17 00:00:00 2001 From: Alex Kiessling <32677188+ajkiessl@users.noreply.github.com> Date: Wed, 3 Jul 2024 09:01:02 -0400 Subject: [PATCH] Adds drop for student submission view (#807) --- db/migrate/20240702191344_drop_student_submissions_view.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrate/20240702191344_drop_student_submissions_view.rb diff --git a/db/migrate/20240702191344_drop_student_submissions_view.rb b/db/migrate/20240702191344_drop_student_submissions_view.rb new file mode 100644 index 000000000..6785ab011 --- /dev/null +++ b/db/migrate/20240702191344_drop_student_submissions_view.rb @@ -0,0 +1,7 @@ +class DropStudentSubmissionsView < ActiveRecord::Migration[6.1] + def change + execute <<-SQL + drop view if exists `student_submissions` + SQL + end +end