Most everything is implemented, included a state handler and a pretty simple (but workable) system for managing state in HTML. Nice and simple for now. There is still much work to be done, but the rest is simple backend creation and error handling. And then input validation...a nightmare.
18 lines
245 B
PL/PgSQL
18 lines
245 B
PL/PgSQL
-- Author: Hayden Hargreaves (hhargreaves2006@gmail.com)
|
|
-- Desc: Create the E_MEAL enum.
|
|
-- Date: 06/25/2025
|
|
|
|
BEGIN;
|
|
|
|
CREATE TYPE E_MEAL AS ENUM(
|
|
'breakfast',
|
|
'lunch',
|
|
'dinner',
|
|
'dessert',
|
|
'snack',
|
|
'side',
|
|
'other'
|
|
);
|
|
|
|
COMMIT;
|