adding starting and ending indexes to pdfs

This will allow us to keep the library smart with the ability to split
our pdfs up into multiple presetations
This commit is contained in:
Chris Cochrun 2025-10-20 14:08:36 -05:00
parent de81283ae4
commit 547a9b80f4
2 changed files with 74 additions and 15 deletions

View file

@ -0,0 +1,6 @@
-- Add migration script here
ALTER TABLE presentations
ADD COLUMN starting_index INTEGER;
ALTER TABLE presentations
ADD COLUMN ending_index INTEGER;