Create an 'occupied' state for unready beds

This commit is contained in:
Reid 'arrdem' McKenzie 2023-06-19 23:25:03 -06:00
parent d5810a530f
commit ae1d00b13f

View file

@ -157,6 +157,10 @@ CREATE TABLE IF NOT EXISTS email_spool (
, FOREIGN KEY(user_id) REFERENCES users(id) , FOREIGN KEY(user_id) REFERENCES users(id)
); );
-- name: migration-0002-create-occupied-state
-- Create a state representing that the printer needs to be unloaded after a print
INSERT OR IGNORE INTO printer_statuses (id, name) VALUES (5, 'occupied');
---------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------
-- Users -- Users
---------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------