Some checks failed
CI / build-and-test (push) Failing after -31m24s
* Implement ContentEditorField for inline editing of content * Create ContentEditorModal for editing content in a modal * Introduce FormerShell for managing forms related to skills and thoughts * Enhance SkillsPage and ThoughtsPage with new components for better content management
32 lines
610 B
Plaintext
32 lines
610 B
Plaintext
Table household_items {
|
|
id uuid [pk, default: `gen_random_uuid()`]
|
|
name text [not null]
|
|
category text
|
|
location text
|
|
details jsonb [not null, default: `'{}'`]
|
|
notes text
|
|
created_at timestamptz [not null, default: `now()`]
|
|
updated_at timestamptz [not null, default: `now()`]
|
|
|
|
indexes {
|
|
category
|
|
}
|
|
}
|
|
|
|
Table household_vendors {
|
|
id uuid [pk, default: `gen_random_uuid()`]
|
|
name text [not null]
|
|
service_type text
|
|
phone text
|
|
email text
|
|
website text
|
|
notes text
|
|
rating int
|
|
last_used date
|
|
created_at timestamptz [not null, default: `now()`]
|
|
|
|
indexes {
|
|
service_type
|
|
}
|
|
}
|