-
Notifications
You must be signed in to change notification settings - Fork 0
Database: BooksPages Table
Fifteen 15 Studios edited this page Jan 7, 2023
·
4 revisions
Holds a list of pages in books.
-
ID- BigInt(20) (UNSIGNED) (PRIMARY KEY) -
BookID- BigInt(20) (UNSIGNED) (NOT NULL) -
PageNum- Int(10) (UNSIGNED) (NOT NULL)
-
ID- Unique identifier for this page -
BookID- Unique ID of the book that this page is in- REFERENCES:
Books.ID
- REFERENCES:
-
PageNum- What page number it is in the book (e.g. 1 for the first page of a book)
Books - Books that this page can be in.
PageSlots - Slots that can be in this book.