Create an 'occupied' state for unready beds
This commit is contained in:
parent
7b0cf463fb
commit
4628d1a28b
1 changed files with 4 additions and 0 deletions
|
@ -157,6 +157,10 @@ CREATE TABLE IF NOT EXISTS email_spool (
|
|||
, 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
|
||||
----------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue