-- 0003_seed_plants.sql โ€” built-in plant catalog. -- -- owner_id NULL marks a read-only built-in (see 0001_init.sql ยง plants). These -- seed once: the migration runner records this version in schema_migrations, so -- re-running Migrate is a no-op and never duplicates them. Users clone a built-in -- (POST a copy owned by themselves) to customize; the originals stay immutable. -- -- spacing_cm is mature in-row spacing and drives derived plop counts (#14). -- color is a display hex; icon is an emoji (v1 ships zero image assets). INSERT INTO plants (owner_id, name, category, spacing_cm, color, icon) VALUES -- Alliums & vegetables (NULL, 'Garlic', 'vegetable', 15, '#d9d2c5', '๐Ÿง„'), (NULL, 'Onion', 'vegetable', 10, '#b07fc7', '๐Ÿง…'), (NULL, 'Bush bean', 'vegetable', 10, '#6b8e23', '๐Ÿซ˜'), (NULL, 'Pole bean', 'vegetable', 15, '#4e7a27', '๐Ÿซ˜'), (NULL, 'Pea', 'vegetable', 8, '#8bc34a', '๐Ÿซ›'), (NULL, 'Tomato', 'vegetable', 60, '#e53935', '๐Ÿ…'), (NULL, 'Pepper', 'vegetable', 45, '#d32f2f', '๐ŸŒถ๏ธ'), (NULL, 'Cucumber', 'vegetable', 30, '#43a047', '๐Ÿฅ’'), (NULL, 'Zucchini', 'vegetable', 60, '#2e7d32', '๐Ÿฅ’'), (NULL, 'Winter squash', 'vegetable', 90, '#ef6c00', '๐ŸŽƒ'), (NULL, 'Carrot', 'vegetable', 8, '#f57c00', '๐Ÿฅ•'), (NULL, 'Radish', 'vegetable', 5, '#e91e63', '๐ŸŒฑ'), (NULL, 'Beet', 'vegetable', 10, '#8e24aa', '๐ŸŒฑ'), (NULL, 'Lettuce', 'vegetable', 20, '#7cb342', '๐Ÿฅฌ'), (NULL, 'Spinach', 'vegetable', 10, '#33691e', '๐Ÿฅฌ'), (NULL, 'Kale', 'vegetable', 45, '#2e5d34', '๐Ÿฅฌ'), (NULL, 'Broccoli', 'vegetable', 45, '#3f7d3f', '๐Ÿฅฆ'), (NULL, 'Cabbage', 'vegetable', 45, '#8bc98b', '๐Ÿฅฌ'), (NULL, 'Potato', 'vegetable', 30, '#a1887f', '๐Ÿฅ”'), (NULL, 'Corn', 'vegetable', 25, '#fbc02d', '๐ŸŒฝ'), -- Herbs (NULL, 'Basil', 'herb', 25, '#4a7c3f', '๐ŸŒฟ'), (NULL, 'Cilantro', 'herb', 10, '#6aa84f', '๐ŸŒฟ'), (NULL, 'Dill', 'herb', 15, '#7cb342', '๐ŸŒฟ'), (NULL, 'Parsley', 'herb', 15, '#388e3c', '๐ŸŒฟ'), (NULL, 'Oregano', 'herb', 25, '#558b2f', '๐ŸŒฟ'), (NULL, 'Thyme', 'herb', 20, '#7a9b6e', '๐ŸŒฟ'), (NULL, 'Rosemary', 'herb', 45, '#4b6b47', '๐ŸŒฟ'), (NULL, 'Sage', 'herb', 45, '#9caf88', '๐ŸŒฟ'), (NULL, 'Mint', 'herb', 30, '#66bb6a', '๐ŸŒฟ'), -- Fruit & flowers (NULL, 'Strawberry', 'fruit', 30, '#e91e63', '๐Ÿ“'), (NULL, 'Sunflower', 'flower', 45, '#fdd835', '๐ŸŒป'), (NULL, 'Marigold', 'flower', 25, '#fb8c00', '๐ŸŒผ');