26 lines
715 B
MySQL
26 lines
715 B
MySQL
|
|
-- (1, 'daily'),
|
||
|
|
-- (2, 'weekly'),
|
||
|
|
-- (3, 'fortnightly'),
|
||
|
|
-- (4, 'monthly'),
|
||
|
|
-- (5, 'seasonally'),
|
||
|
|
-- (6, 'semiannually'),
|
||
|
|
-- (7, 'yearly')
|
||
|
|
insert into tasks (description, frequency_id) values
|
||
|
|
('**Kitchen**: Tidy', 2),
|
||
|
|
('**Kitchen**: Wipe counters', 2),
|
||
|
|
('**Dining**: Tidy', 2),
|
||
|
|
('**Dining**: Wipe table', 2),
|
||
|
|
('**Kitchen**: Clean sink', 3),
|
||
|
|
('**Bathroom**: Change towels', 3),
|
||
|
|
('**Bathroom**: Tidy', 3),
|
||
|
|
('**Bathroom**: Wipe counters & sinks', 4),
|
||
|
|
('**Bathroom**: Sweep/vacuum', 4),
|
||
|
|
('**Bathroom**: Empty trash', 4),
|
||
|
|
('**Bathroom**: Clean toilets', 4),
|
||
|
|
('Mirrors', 5),
|
||
|
|
('**kitchen**: Verticals', 5),
|
||
|
|
('Clean oven', 6),
|
||
|
|
('Wash dish rack', 6),
|
||
|
|
('Oil hinges', 7),
|
||
|
|
('Wash patio', 7);
|