-
Notifications
You must be signed in to change notification settings - Fork 0
Database: Containers Table
Fifteen 15 Studios edited this page Dec 30, 2021
·
3 revisions
Holds a list of containers.
Containers can hold collection items like coins, bills (banknotes), sets, books, or even other containers. A container might be a box, safe, or other item that holds your collection. If you have a box inside of a safe, then the safe would be the parent item of the box.
-
ID- BigInt(20) (UNSIGNED) (PRIMARY KEY), -
Name- VarChar(100) (NOT NULL), -
ParentID- BigInt(20) (UNSIGNED) (DEFAULT NULL)
-
ID- Unique identifier for this container -
Name- String value of the name of the container -
ParentID- Unique ID of the container that holds this container. Null if this container is not inside of another container.
Coins - Coins that can be in this container.
Bills - Bills (banknotes) that can be in this container.
Books - Books that can be in this container.