|
|
@@ -0,0 +1,2240 @@
|
|
|
+-- ============================================================
|
|
|
+-- Applied Agronomy — Playbook Templates
|
|
|
+-- Flat / denormalised schema • MySQL 8.x
|
|
|
+-- Generated: 2026-03-30
|
|
|
+-- Rows: 2135
|
|
|
+-- ============================================================
|
|
|
+
|
|
|
+CREATE DATABASE IF NOT EXISTS applied_agronomy
|
|
|
+ CHARACTER SET utf8mb4
|
|
|
+ COLLATE utf8mb4_unicode_ci;
|
|
|
+
|
|
|
+USE applied_agronomy;
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS playbook_applications;
|
|
|
+
|
|
|
+CREATE TABLE playbook_applications (
|
|
|
+ id INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
|
+
|
|
|
+ -- Crop
|
|
|
+ crop_name VARCHAR(100) NOT NULL COMMENT 'e.g. Cherry, Wheat, Avocado',
|
|
|
+
|
|
|
+ -- Growth stage
|
|
|
+ stage_index TINYINT UNSIGNED NOT NULL COMMENT 'Zero-based index into the crop stage list',
|
|
|
+ stage_label VARCHAR(120) NOT NULL COMMENT 'e.g. 80-100% Flower',
|
|
|
+ stage_month VARCHAR(30) NULL COMMENT 'Approximate calendar month',
|
|
|
+
|
|
|
+ -- Product
|
|
|
+ product_type VARCHAR(30) NOT NULL COMMENT 'ground | foliar | fertigation | primer | seed | granular',
|
|
|
+ product_type_label VARCHAR(30) NOT NULL COMMENT 'Display label e.g. Foliar, Spread',
|
|
|
+ product_name VARCHAR(120) NOT NULL COMMENT 'e.g. Power-Cal®',
|
|
|
+ rate DECIMAL(10,3) NOT NULL COMMENT 'Application rate (units vary by product type)',
|
|
|
+
|
|
|
+ PRIMARY KEY (id),
|
|
|
+ INDEX idx_crop (crop_name),
|
|
|
+ INDEX idx_product_type (product_type),
|
|
|
+ INDEX idx_product_name (product_name),
|
|
|
+ INDEX idx_crop_stage (crop_name, stage_index)
|
|
|
+) ENGINE=InnoDB
|
|
|
+ DEFAULT CHARSET=utf8mb4
|
|
|
+ COLLATE=utf8mb4_unicode_ci
|
|
|
+ COMMENT='One row per product application event across all crop playbook templates';
|
|
|
+
|
|
|
+-- ============================================================
|
|
|
+-- DATA — 2135 rows
|
|
|
+-- ============================================================
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Lucerne', 0, 'Dry Spread', 'March', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Lucerne', 0, 'Dry Spread', 'March', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Lucerne', 0, 'Dry Spread', 'March', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Lucerne', 0, 'Dry Spread', 'March', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Lucerne', 1, 'Early Vegetative', 'August', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lucerne', 3, 'Late Vegetative', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lucerne', 5, 'Early Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lucerne', 1, 'Early Vegetative', 'August', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 10),
|
|
|
+ ('Lucerne', 3, 'Late Vegetative', 'September', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 10),
|
|
|
+ ('Lucerne', 5, 'Early Flower', 'September', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 10),
|
|
|
+ ('Lucerne', 1, 'Early Vegetative', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Lucerne', 2, 'Mid Vegetative', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Lucerne', 3, 'Late Vegetative', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Lucerne', 4, 'Early Bud', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Lucerne', 5, 'Early Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Lucerne', 6, 'Post Cutting/Grazing', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Lucerne', 2, 'Mid Vegetative', 'August', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Lucerne', 4, 'Early Bud', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Lucerne', 2, 'Mid Vegetative', 'August', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Lucerne', 4, 'Early Bud', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Lucerne', 1, 'Early Vegetative', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Lucerne', 4, 'Early Bud', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Lucerne', 2, 'Mid Vegetative', 'August', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Lucerne', 3, 'Late Vegetative', 'September', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Lucerne', 5, 'Early Flower', 'September', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Almond', 0, 'Dry Spread', 'May', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Almond', 4, '20-40% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Almond', 5, '80-100% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Almond', 6, 'Shoot Growth and Foliage 1', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Almond', 7, 'Shoot Growth and Foliage 2', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Almond', 8, 'Hull Expansion', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Almond', 9, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Almond', 10, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Almond', 11, 'Shell Split', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Almond', 12, 'Late Season Development', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Almond', 8, 'Hull Expansion', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 10),
|
|
|
+ ('Almond', 4, '20-40% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Almond', 5, '80-100% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Almond', 6, 'Shoot Growth and Foliage 1', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Almond', 4, '20-40% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Almond', 5, '80-100% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Almond', 6, 'Shoot Growth and Foliage 1', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Almond', 7, 'Shoot Growth and Foliage 2', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Almond', 8, 'Hull Expansion', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Almond', 9, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Almond', 10, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Almond', 11, 'Shell Split', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Almond', 12, 'Late Season Development', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Almond', 6, 'Shoot Growth and Foliage 1', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Almond', 7, 'Shoot Growth and Foliage 2', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Almond', 9, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Almond', 10, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Almond', 8, 'Hull Expansion', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Almond', 9, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Almond', 10, 'Nut Fill', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Almond', 11, 'Shell Split', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Almond', 12, 'Late Season Development', 'January', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Almond', 13, 'Post-Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Almond', 14, 'Post-Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Almond', 13, 'Post-Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 15),
|
|
|
+ ('Almond', 14, 'Post-Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 15),
|
|
|
+ ('Almond', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Almond', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Almond', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 4),
|
|
|
+ ('Almond', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Mag', 10),
|
|
|
+ ('Almond', 1, 'Soil Bio Primer', 'June', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Almond', 2, 'Early Bud Break', 'June', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 100),
|
|
|
+ ('Almond', 3, 'Bud Burst/Pink Bud', 'July', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Almond', 2, 'Early Bud Break', 'June', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Almond', 4, '20-40% Flower', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Almond', 6, 'Shoot Growth and Foliage 1', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Almond', 8, 'Hull Expansion', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Almond', 10, 'Nut Fill', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Almond', 5, '80-100% Flower', 'August', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Almond', 7, 'Shoot Growth and Foliage 2', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Almond', 7, 'Shoot Growth and Foliage 2', 'September', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Almond', 8, 'Hull Expansion', 'October', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Almond', 9, 'Nut Fill', 'November', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Almond', 11, 'Shell Split', 'December', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Almond', 13, 'Post-Harvest 1', 'March', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 30),
|
|
|
+ ('Almond', 14, 'Post-Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 30),
|
|
|
+ ('Apple', 0, 'Dry Spread', 'June', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Apple', 1, 'Early Bud Break', 'September', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Apple', 1, 'Early Bud Break', 'September', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Apple', 1, 'Early Bud Break', 'September', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Apple', 3, '20-40% Flower', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 5, 'Petal Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 8, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 9, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apple', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Apple', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Apple', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Apple', 2, 'Bud Burst/Pink Bud', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Apple', 3, '20-40% Flower', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Apple', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Apple', 5, 'Petal Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Apple', 2, 'Bud Burst/Pink Bud', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 3, '20-40% Flower', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 5, 'Petal Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 8, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 9, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apple', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Apple', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Apple', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apple', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apple', 8, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apple', 9, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apple', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apple', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apple', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apple', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Apple', 14, 'Post-Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Apple', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Apple', 14, 'Post-Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Apple', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Apple', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Apple', 14, 'Post-Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Apple', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Apple', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Apple', 4, '80-100% Flower', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Apple', 6, 'Fruit Set/Cell Division', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Apple', 8, 'Early Fruit Development 2', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Apple', 5, 'Petal Fall/Cell Division', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Apple', 7, 'Early Fruit Development 1', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Apple', 10, 'Mid Fruit Development 2', 'January', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Apple', 12, 'Late Fruit Development 2', 'March', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Apple', 9, 'Mid Fruit Development 1', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Apple', 11, 'Late Fruit Development 1', 'Febuary', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Apple', 13, 'Post-Harvest 1', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Apple', 14, 'Post-Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Apricot', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Apricot', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Apricot', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Apricot', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Apricot', 2, '20-30% Flowering', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Apricot', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Apricot', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Apricot', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Apricot', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Apricot', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Apricot', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Apricot', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Apricot', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Apricot', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Apricot', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Apricot', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Apricot', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Apricot', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Apricot', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Apricot', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Apricot', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Apricot', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Apricot', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apricot', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apricot', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apricot', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Apricot', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Apricot', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Apricot', 2, '20-30% Flowering', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Apricot', 3, '80-90% Flower', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Apricot', 5, 'Fruitlet Application 1', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Apricot', 4, 'Shuck Fall', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Apricot', 7, 'Fruit Fill Application 1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Apricot', 11, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Apricot', 6, 'Fruitlet Application 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Apricot', 8, 'Fruit Fill Application 2', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Rocket', 0, 'Planting', 'November', 'ground', 'Spread', 'Granule Prescription Blend', 200),
|
|
|
+ ('Rocket', 2, 'Application 2', 'December', 'ground', 'Spread', 'Granule Prescription Blend', 100),
|
|
|
+ ('Rocket', 4, 'Application 4', 'January', 'ground', 'Spread', 'Granule Prescription Blend', 100),
|
|
|
+ ('Rocket', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Rocket', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Rocket', 1, 'Application 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Rocket', 3, 'Application 3', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Rocket', 1, 'Application 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Rocket', 2, 'Application 2', 'December', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Rocket', 3, 'Application 3', 'December', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Rocket', 1, 'Application 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® 22.3.6', 15),
|
|
|
+ ('Rocket', 2, 'Application 2', 'December', 'foliar', 'Foliar', 'Agri-Vive® 22.3.6', 15),
|
|
|
+ ('Rocket', 3, 'Application 3', 'December', 'foliar', 'Foliar', 'Agri-Vive® 22.3.6', 15),
|
|
|
+ ('Avocado', 1, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Avocado', 0, 'Soil Bio Primer', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Avocado', 0, 'Soil Bio Primer', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Avocado', 0, 'Soil Bio Primer', 'July', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Avocado', 2, 'Early Bud Movement', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 3, '20-40% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 5, 'Cell Division', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 6, 'Fruitlet Development', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 7, 'Early Fruit Development 1', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 8, 'Early Fruit Development 2', 'February', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 9, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 10, 'Mid Fruit Development 2', 'April', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 11, 'Late Fruit Development 1', 'May', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 12, 'Late Fruit Development 2', 'June', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Avocado', 8, 'Early Fruit Development 2', 'February', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 15),
|
|
|
+ ('Avocado', 9, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 15),
|
|
|
+ ('Avocado', 10, 'Mid Fruit Development 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 15),
|
|
|
+ ('Avocado', 11, 'Late Fruit Development 1', 'May', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 15),
|
|
|
+ ('Avocado', 2, 'Early Bud Movement', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Avocado', 3, '20-40% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Avocado', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Avocado', 2, 'Early Bud Movement', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 3, '20-40% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 5, 'Cell Division', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 6, 'Fruitlet Development', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 7, 'Early Fruit Development 1', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 8, 'Early Fruit Development 2', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 9, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 10, 'Mid Fruit Development 2', 'April', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 11, 'Late Fruit Development 1', 'May', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Avocado', 6, 'Fruitlet Development', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Avocado', 7, 'Early Fruit Development 1', 'January', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Avocado', 12, 'Late Fruit Development 2', 'June', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Avocado', 8, 'Early Fruit Development 2', 'February', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Avocado', 10, 'Mid Fruit Development 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Avocado', 12, 'Late Fruit Development 2', 'June', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Avocado', 2, 'Early Bud Movement', 'August', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Avocado', 9, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Avocado', 13, 'Post-Harvest 1', 'June', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Avocado', 14, 'Post-Harvest 2', 'June', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Avocado', 13, 'Post-Harvest 1', 'June', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Avocado', 14, 'Post-Harvest 2', 'June', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Avocado', 13, 'Post-Harvest 1', 'June', 'foliar', 'Foliar', 'Opti-Mag', 2),
|
|
|
+ ('Avocado', 14, 'Post-Harvest 2', 'June', 'foliar', 'Foliar', 'Opti-Mag', 2),
|
|
|
+ ('Avocado', 13, 'Post-Harvest 1', 'June', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.2),
|
|
|
+ ('Avocado', 14, 'Post-Harvest 2', 'June', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.2),
|
|
|
+ ('Avocado', 1, 'Dry Spread', 'July', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 30),
|
|
|
+ ('Avocado', 9, 'Mid Fruit Development 1', 'March', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 30),
|
|
|
+ ('Avocado', 14, 'Post-Harvest 2', 'June', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 30),
|
|
|
+ ('Avocado', 5, 'Cell Division', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Avocado', 8, 'Early Fruit Development 2', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Avocado', 10, 'Mid Fruit Development 2', 'April', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Avocado', 7, 'Early Fruit Development 1', 'January', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Avocado', 6, 'Fruitlet Development', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Avocado', 11, 'Late Fruit Development 1', 'May', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Avocado', 13, 'Post-Harvest 1', 'June', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Basil', 1, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Basil', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Basil', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Basil', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Opti-Cal®', 10),
|
|
|
+ ('Basil', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Opti-Trace® Boron', 2),
|
|
|
+ ('Basil', 2, 'Week 1', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 3, 'Week 2', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 5, 'Week 4', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 6, 'Week 5', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 8, 'Week 7', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 9, 'Week 8', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 11, 'Week 10', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 12, 'Week 11', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 14, 'Week 13', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 15, 'Week 14', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Basil', 2, 'Week 1', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 3, 'Week 2', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 4, 'Week 3', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 5, 'Week 4', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 6, 'Week 5', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 7, 'Week 6', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 8, 'Week 7', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 9, 'Week 8', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 10, 'Week 9', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 11, 'Week 10', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 12, 'Week 11', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 13, 'Week 12', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 14, 'Week 13', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 15, 'Week 14', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 16, 'Week 15', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Basil', 2, 'Week 1', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 3, 'Week 2', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 4, 'Week 3', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 5, 'Week 4', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 6, 'Week 5', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 7, 'Week 6', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 8, 'Week 7', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 9, 'Week 8', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 10, 'Week 9', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 11, 'Week 10', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 12, 'Week 11', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 13, 'Week 12', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 14, 'Week 13', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 15, 'Week 14', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 16, 'Week 15', 'January', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Basil', 2, 'Week 1', 'September', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 3, 'Week 2', 'September', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 5, 'Week 4', 'October', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 6, 'Week 5', 'October', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 8, 'Week 7', 'November', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 9, 'Week 8', 'November', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 11, 'Week 10', 'November', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 12, 'Week 11', 'December', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 14, 'Week 13', 'December', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 15, 'Week 14', 'December', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Basil', 4, 'Week 3', 'October', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Basil', 7, 'Week 6', 'October', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Basil', 10, 'Week 9', 'November', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Basil', 13, 'Week 12', 'December', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Basil', 16, 'Week 15', 'January', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Basil', 3, 'Week 2', 'September', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Basil', 7, 'Week 6', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Basil', 11, 'Week 10', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Basil', 15, 'Week 14', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Blackberry', 1, 'Soil Amendments', 'June', 'ground', 'Spread', 'Nutri-Core® Soil Acidity Regulator', 20),
|
|
|
+ ('Blackberry', 6, 'Beginning of flowering', 'November', 'ground', 'Spread', 'Nutri-Core® Soil Acidity Regulator', 20),
|
|
|
+ ('Blackberry', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Blackberry', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 2.5),
|
|
|
+ ('Blackberry', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Opti-Cal®', 100),
|
|
|
+ ('Blackberry', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Opti-Trace® Complete', 4),
|
|
|
+ ('Blackberry', 6, 'Beginning of flowering', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Blackberry', 7, 'Early Flowering 100%', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Blackberry', 8, 'Fruit Set-Cell Division', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blackberry', 10, 'Small Fruit Application 2', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blackberry', 11, 'Red Fruit', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blackberry', 12, 'Ripening', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blackberry', 13, 'Ripening', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Blackberry', 10, 'Small Fruit Application 2', 'January', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Blackberry', 11, 'Red Fruit', 'January', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Blackberry', 6, 'Beginning of flowering', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Blackberry', 7, 'Early Flowering 100%', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Blackberry', 6, 'Beginning of flowering', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Blackberry', 7, 'Early Flowering 100%', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Blackberry', 8, 'Fruit Set-Cell Division', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blackberry', 10, 'Small Fruit Application 2', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blackberry', 11, 'Red Fruit', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blackberry', 12, 'Ripening', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blackberry', 13, 'Ripening', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'foliar', 'Foliar', 'Opti-Trace® Complete', 3),
|
|
|
+ ('Blackberry', 10, 'Small Fruit Application 2', 'January', 'foliar', 'Foliar', 'Opti-Trace® Complete', 3),
|
|
|
+ ('Blackberry', 11, 'Red Fruit', 'January', 'foliar', 'Foliar', 'Opti-Trace® Complete', 3),
|
|
|
+ ('Blackberry', 12, 'Ripening', 'February', 'foliar', 'Foliar', 'Opti-Trace® Complete', 3),
|
|
|
+ ('Blackberry', 13, 'Ripening', 'February', 'foliar', 'Foliar', 'Opti-Trace® Complete', 3),
|
|
|
+ ('Blackberry', 14, 'Post Harvest - 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Blackberry', 15, 'Post Harvest - 2', 'March', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Blackberry', 16, 'Post Harvest - 3', 'April', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Blackberry', 6, 'Beginning of flowering', 'November', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Blackberry', 8, 'Fruit Set-Cell Division', 'December', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Blackberry', 14, 'Post Harvest - 1', 'March', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Blackberry', 15, 'Post Harvest - 2', 'March', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Blackberry', 16, 'Post Harvest - 3', 'April', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Blackberry', 14, 'Post Harvest - 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Blackberry', 15, 'Post Harvest - 2', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Blackberry', 16, 'Post Harvest - 3', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Blackberry', 14, 'Post Harvest - 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Blackberry', 15, 'Post Harvest - 2', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Blackberry', 16, 'Post Harvest - 3', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Blackberry', 14, 'Post Harvest - 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Blackberry', 15, 'Post Harvest - 2', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Blackberry', 16, 'Post Harvest - 3', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Blackberry', 1, 'Soil Amendments', 'June', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Blackberry', 2, 'Cane Growth', 'July', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Blackberry', 3, 'Cane Growth', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Blackberry', 4, 'Cane Growth', 'September', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Blackberry', 2, 'Cane Growth', 'July', 'fertigation', 'Fertigation', 'Opti-Mag', 50),
|
|
|
+ ('Blackberry', 1, 'Soil Amendments', 'June', 'fertigation', 'Fertigation', 'Agri-Vive® 3.14.32', 50),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® 3.14.32', 50),
|
|
|
+ ('Blackberry', 2, 'Cane Growth', 'July', 'fertigation', 'Fertigation', 'Opti-Cal®', 100),
|
|
|
+ ('Blackberry', 3, 'Cane Growth', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 100),
|
|
|
+ ('Blackberry', 4, 'Cane Growth', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 100),
|
|
|
+ ('Blackberry', 5, 'Cane Growth', 'Octiber', 'fertigation', 'Fertigation', 'Opti-Cal®', 100),
|
|
|
+ ('Blackberry', 6, 'Beginning of flowering', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 50),
|
|
|
+ ('Blackberry', 7, 'Early Flowering 100%', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Blackberry', 8, 'Fruit Set-Cell Division', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Blackberry', 11, 'Red Fruit', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Blackberry', 3, 'Cane Growth', 'August', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Blackberry', 4, 'Cane Growth', 'September', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Blackberry', 5, 'Cane Growth', 'Octiber', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Blackberry', 7, 'Early Flowering 100%', 'November', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 10),
|
|
|
+ ('Blackberry', 8, 'Fruit Set-Cell Division', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'fertigation', 'Fertigation', 'K-Max', 40);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Blackberry', 10, 'Small Fruit Application 2', 'January', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Blackberry', 11, 'Red Fruit', 'January', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Blackberry', 2, 'Cane Growth', 'July', 'fertigation', 'Fertigation', 'Opti-Trace® Complete', 5),
|
|
|
+ ('Blackberry', 9, 'Small Fruit Application 1', 'December', 'fertigation', 'Fertigation', 'Opti-Trace® Complete', 5),
|
|
|
+ ('Blackberry', 14, 'Post Harvest - 1', 'March', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Blackberry', 15, 'Post Harvest - 2', 'March', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Blackberry', 16, 'Post Harvest - 3', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Blueberry', 0, 'Bud Swell', 'August', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Blueberry', 0, 'Bud Swell', 'August', 'primer', 'Soil Primer', 'Opti-Cal®', 10),
|
|
|
+ ('Blueberry', 1, 'Bud Burst', 'August', 'primer', 'Soil Primer', 'Opti-Cal®', 20),
|
|
|
+ ('Blueberry', 0, 'Bud Swell', 'August', 'primer', 'Soil Primer', 'Opti-Trace® Boron', 2),
|
|
|
+ ('Blueberry', 1, 'Bud Burst', 'August', 'primer', 'Soil Primer', 'Opti-Trace® Boron', 2),
|
|
|
+ ('Blueberry', 0, 'Bud Swell', 'August', 'primer', 'Soil Primer', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Blueberry', 1, 'Bud Burst', 'August', 'primer', 'Soil Primer', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Blueberry', 2, 'Late Green Tip', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Blueberry', 4, 'Early Pink Bud', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blueberry', 5, '10-20 Flowering', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blueberry', 6, 'Full Bloom', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blueberry', 9, 'End of Shoot Growth', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blueberry', 10, '10% Blue', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blueberry', 11, '75% Blue', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blueberry', 12, 'Pre-Harvest', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Blueberry', 2, 'Late Green Tip', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Blueberry', 7, 'Petal Fall', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Blueberry', 8, 'Early Green Fruit', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Blueberry', 12, 'Pre-Harvest', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 8),
|
|
|
+ ('Blueberry', 4, 'Early Pink Bud', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Blueberry', 5, '10-20 Flowering', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Blueberry', 6, 'Full Bloom', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Blueberry', 13, 'Fruit Bud Set/Post Harvest', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 6),
|
|
|
+ ('Blueberry', 9, 'End of Shoot Growth', 'November', 'foliar', 'Foliar', 'Power-Mag', 5),
|
|
|
+ ('Blueberry', 13, 'Fruit Bud Set/Post Harvest', 'December', 'foliar', 'Foliar', 'Power-Mag', 4),
|
|
|
+ ('Blueberry', 14, 'Senescence', 'April', 'foliar', 'Foliar', 'Power-Mag', 5),
|
|
|
+ ('Blueberry', 2, 'Late Green Tip', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 3),
|
|
|
+ ('Blueberry', 7, 'Petal Fall', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Blueberry', 8, 'Early Green Fruit', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Blueberry', 9, 'End of Shoot Growth', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Blueberry', 11, '75% Blue', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Blueberry', 10, '10% Blue', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 8),
|
|
|
+ ('Blueberry', 11, '75% Blue', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 8),
|
|
|
+ ('Blueberry', 2, 'Late Green Tip', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 4, 'Early Pink Bud', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 5, '10-20 Flowering', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 6, 'Full Bloom', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 7, 'Petal Fall', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 8, 'Early Green Fruit', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 9, 'End of Shoot Growth', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 10, '10% Blue', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 11, '75% Blue', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 12, 'Pre-Harvest', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Blueberry', 13, 'Fruit Bud Set/Post Harvest', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Blueberry', 14, 'Senescence', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Blueberry', 13, 'Fruit Bud Set/Post Harvest', 'December', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Blueberry', 14, 'Senescence', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Blueberry', 14, 'Senescence', 'April', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 4),
|
|
|
+ ('Blueberry', 2, 'Late Green Tip', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Blueberry', 4, 'Early Pink Bud', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Blueberry', 5, '10-20 Flowering', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Blueberry', 6, 'Full Bloom', 'October', 'fertigation', 'Fertigation', 'Opti-Mag', 30),
|
|
|
+ ('Blueberry', 7, 'Petal Fall', 'October', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Blueberry', 10, '10% Blue', 'December', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Blueberry', 11, '75% Blue', 'December', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Blueberry', 12, 'Pre-Harvest', 'December', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Blueberry', 14, 'Senescence', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Blueberry', 7, 'Petal Fall', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Blueberry', 8, 'Early Green Fruit', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Blueberry', 0, 'Bud Swell', 'August', 'fertigation', 'Fertigation', 'Bio-Sea® Soil Activator', 40),
|
|
|
+ ('Blueberry', 1, 'Bud Burst', 'August', 'fertigation', 'Fertigation', 'Bio-Sea® Soil Activator', 40),
|
|
|
+ ('Blueberry', 3, 'Shoot Expansion', 'September', 'fertigation', 'Fertigation', 'Bio-Sea® Soil Activator', 30),
|
|
|
+ ('Blueberry', 9, 'End of Shoot Growth', 'November', 'fertigation', 'Fertigation', 'Bio-Sea® Soil Activator', 40),
|
|
|
+ ('Blueberry', 13, 'Fruit Bud Set/Post Harvest', 'December', 'fertigation', 'Fertigation', 'Bio-Sea® Soil Activator', 40),
|
|
|
+ ('Broccoli', 1, 'Dry Spread', 'June', 'ground', 'Spread', 'Dry Prescription Blend', 700),
|
|
|
+ ('Broccoli', 6, '6-10 Leaf Stage', 'September', 'ground', 'Spread', 'Pearl Charge', 200),
|
|
|
+ ('Broccoli', 3, 'Planting', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 2),
|
|
|
+ ('Broccoli', 3, 'Planting', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Broccoli', 3, 'Planting', 'August', 'primer', 'Soil Primer', 'Opti-Cal®', 20),
|
|
|
+ ('Broccoli', 5, '3-6 Leaf Stage', 'August', 'foliar', 'Foliar', 'Power-Cal®', 4),
|
|
|
+ ('Broccoli', 7, 'Early head', 'September', 'foliar', 'Foliar', 'Power-Cal®', 6),
|
|
|
+ ('Broccoli', 8, 'Head Development', 'October', 'foliar', 'Foliar', 'Power-Cal®', 6),
|
|
|
+ ('Broccoli', 8, 'Head Development', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Broccoli', 5, '3-6 Leaf Stage', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Broccoli', 7, 'Early head', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Broccoli', 8, 'Head Development', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Broccoli', 5, '3-6 Leaf Stage', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF Organic', 2),
|
|
|
+ ('Broccoli', 7, 'Early head', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF Organic', 2),
|
|
|
+ ('Broccoli', 8, 'Head Development', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF Organic', 2),
|
|
|
+ ('Broccoli', 5, '3-6 Leaf Stage', 'August', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Broccoli', 7, 'Early head', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Broccoli', 6, '6-10 Leaf Stage', 'September', 'foliar', 'Foliar', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Broccoli', 4, 'Emergence', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 60),
|
|
|
+ ('Broccoli', 4, 'Emergence', 'August', 'fertigation', 'Fertigation', 'Mycro-Feast®', 3),
|
|
|
+ ('Broccoli', 5, '3-6 Leaf Stage', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Broccoli', 6, '6-10 Leaf Stage', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Broccoli', 5, '3-6 Leaf Stage', 'August', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 15),
|
|
|
+ ('Broccoli', 6, '6-10 Leaf Stage', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 15),
|
|
|
+ ('Broccoli', 7, 'Early head', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Broccoli', 7, 'Early head', 'September', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Broccoli', 8, 'Head Development', 'October', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Buckwheat', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Precede', 0.4),
|
|
|
+ ('Buckwheat', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Mycro-Tec SP®', 0.1),
|
|
|
+ ('Buckwheat', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ReLeaf', 3),
|
|
|
+ ('Buckwheat', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ToNik', 10),
|
|
|
+ ('Buckwheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'ToNik', 50),
|
|
|
+ ('Buckwheat', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Buckwheat', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Buckwheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Buckwheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Buckwheat', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'N-Hance', 3),
|
|
|
+ ('Buckwheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'N-Hance', 1),
|
|
|
+ ('Buckwheat', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Buckwheat', 10, 'Fallow Knock Down', 'December', 'foliar', 'Foliar', 'Amplify', 0.2),
|
|
|
+ ('Buckwheat', 9, 'Flowering Foliar Spray', 'September', 'foliar', 'Foliar', 'Frost-Ex®', 5),
|
|
|
+ ('Buckwheat', 9, 'Flowering Foliar Spray', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Buckwheat', 2, 'Sowing', 'March', 'granular', 'Granular', 'Pearl Array', 100),
|
|
|
+ ('Buckwheat', 2, 'Sowing', 'March', 'granular', 'Granular', 'Opti-Trace® Zinc', 0.4),
|
|
|
+ ('Buckwheat', 5, 'Granule Spread', 'June', 'granular', 'Granular', 'Pearl Surge', 80),
|
|
|
+ ('Buckwheat', 9, 'Flowering Foliar Spray', 'September', 'granular', 'Granular', 'Agri-Vive® RF', 20),
|
|
|
+ ('Buckwheat', 6, '1st Foliar', 'June', 'granular', 'Granular', 'N-Hance', 3),
|
|
|
+ ('Buckwheat', 9, 'Flowering Foliar Spray', 'September', 'granular', 'Granular', 'N-Hance', 1),
|
|
|
+ ('Buckwheat', 6, '1st Foliar', 'June', 'granular', 'Granular', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Buckwheat', 5, 'Granule Spread', 'June', 'granular', 'Granular', 'Pearl Surge', 80),
|
|
|
+ ('Canola', 0, 'Pre Spread', 'February', 'ground', 'Spread', 'Gypsum', 1000),
|
|
|
+ ('Canola', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Precede', 0.4),
|
|
|
+ ('Canola', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Mycro-Start®', 0.4),
|
|
|
+ ('Canola', 8, 'Flowering Spray', 'August', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Canola', 5, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ReLeaf', 4),
|
|
|
+ ('Canola', 5, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ToNik', 10),
|
|
|
+ ('Canola', 5, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Canola', 8, 'Flowering Spray', 'August', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Canola', 5, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'N-Hance', 4),
|
|
|
+ ('Canola', 8, 'Flowering Spray', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Canola', 8, 'Flowering Spray', 'August', 'foliar', 'Foliar', 'Opti-Trace® Boron', 1),
|
|
|
+ ('Canola', 8, 'Flowering Spray', 'August', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Canola', 2, 'Sowing', 'April', 'granular', 'Granular', 'Pearl Array', 100),
|
|
|
+ ('Canola', 3, 'Nitrogen Application', 'May', 'granular', 'Granular', 'Pearl Surge', 120),
|
|
|
+ ('Canola', 6, 'Nitrogen Application', 'June', 'granular', 'Granular', 'Pearl Surge', 160),
|
|
|
+ ('Capsicum', 0, 'Dry Spread', 'August', 'ground', 'Spread', 'Dry Prescription Blend', 1250),
|
|
|
+ ('Capsicum', 1, 'Planting', 'October', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Capsicum', 1, 'Planting', 'October', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Capsicum', 2, 'Initial Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Capsicum', 3, 'Flowering', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Capsicum', 3, 'Flowering', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Capsicum', 9, 'Plant and Fruit Growth', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 5),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 5),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 5),
|
|
|
+ ('Capsicum', 9, 'Plant and Fruit Growth', 'January', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 10),
|
|
|
+ ('Capsicum', 10, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 10),
|
|
|
+ ('Capsicum', 11, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 10),
|
|
|
+ ('Capsicum', 12, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 10),
|
|
|
+ ('Capsicum', 2, 'Initial Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 3, 'Flowering', 'November', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 9, 'Plant and Fruit Growth', 'January', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 10, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 11, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 12, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1.5),
|
|
|
+ ('Capsicum', 2, 'Initial Growth', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 3, 'Flowering', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 9, 'Plant and Fruit Growth', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 10, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 11, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 12, 'Plant and Fruit Growth', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Capsicum', 1, 'Planting', 'October', 'fertigation', 'Fertigation', 'Opti-Mag', 10),
|
|
|
+ ('Capsicum', 3, 'Flowering', 'November', 'fertigation', 'Fertigation', 'Opti-Mag', 10),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Opti-Mag', 10),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'fertigation', 'Fertigation', 'Opti-Mag', 20),
|
|
|
+ ('Capsicum', 1, 'Planting', 'October', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 40),
|
|
|
+ ('Capsicum', 3, 'Flowering', 'November', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 40),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 40),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 40),
|
|
|
+ ('Capsicum', 2, 'Initial Growth', 'October', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 10),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 10),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 10),
|
|
|
+ ('Capsicum', 10, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 10),
|
|
|
+ ('Capsicum', 11, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 10),
|
|
|
+ ('Capsicum', 12, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 10),
|
|
|
+ ('Capsicum', 13, 'Plant and Fruit Growth', 'March', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 10);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Capsicum', 3, 'Flowering', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 9, 'Plant and Fruit Growth', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 10, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 11, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 12, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 13, 'Plant and Fruit Growth', 'March', 'fertigation', 'Fertigation', 'Opti-Cal®', 15),
|
|
|
+ ('Capsicum', 5, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 7, 'Flowering', 'January', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 9, 'Plant and Fruit Growth', 'January', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 10, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 11, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 12, 'Plant and Fruit Growth', 'February', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Capsicum', 2, 'Initial Growth', 'October', 'fertigation', 'Fertigation', 'Ironman', 2.5),
|
|
|
+ ('Capsicum', 6, 'Plant and Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Ironman', 2.5),
|
|
|
+ ('Capsicum', 2, 'Initial Growth', 'October', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 40),
|
|
|
+ ('Capsicum', 4, 'Fruit Set', 'November', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 40),
|
|
|
+ ('Capsicum', 8, 'Fruit Set', 'January', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 40),
|
|
|
+ ('Cherry', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Cherry', 1, 'Early Bud Break', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Cherry', 1, 'Early Bud Break', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Cherry', 1, 'Early Bud Break', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Cherry', 1, 'Early Bud Break', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Cherry', 2, '20-30% Flowering', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Cherry', 3, '80-90% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Cherry', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Cherry', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Cherry', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Cherry', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Cherry', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Cherry', 9, 'Fruit Fill Application 3 (Later Varieties)', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Cherry', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Cherry', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Cherry', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Cherry', 9, 'Fruit Fill Application 3 (Later Varieties)', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Cherry', 1, 'Early Bud Break', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Cherry', 2, '20-30% Flowering', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Cherry', 3, '80-90% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Cherry', 1, 'Early Bud Break', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 2, '20-30% Flowering', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 3, '80-90% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 9, 'Fruit Fill Application 3 (Later Varieties)', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Cherry', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Cherry', 10, 'Post Harvest 1', 'February', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Cherry', 11, 'Post Harvest 2', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Cherry', 10, 'Post Harvest 1', 'February', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Cherry', 11, 'Post Harvest 2', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Cherry', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Cherry', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Cherry', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Cherry', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Cherry', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Cherry', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Cherry', 10, 'Post Harvest 1', 'February', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Cherry', 11, 'Post Harvest 2', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Cherry', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 0.5),
|
|
|
+ ('Cherry', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® Iron', 0.5),
|
|
|
+ ('Cherry', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Cherry', 3, '80-90% Flower', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Cherry', 5, 'Fruitlet Application 1', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Cherry', 4, 'Shuck Fall', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Cherry', 7, 'Fruit Fill Application 1', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Cherry', 10, 'Post Harvest 1', 'February', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Cherry', 11, 'Post Harvest 2', 'March', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Cherry', 6, 'Fruitlet Application 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Cherry', 8, 'Fruit Fill Application 2', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Cherry', 9, 'Fruit Fill Application 3 (Later Varieties)', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Chestnut', 1, 'Dry Spread', 'September', 'ground', 'Spread', 'Dry Prescription Blend', 600),
|
|
|
+ ('Chestnut', 3, 'Leaf Development', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Chestnut', 5, 'Catkins Growth', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Chestnut', 6, 'Flowering 1', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Chestnut', 7, 'Flowering 2', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Chestnut', 8, 'Flowering 3', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Chestnut', 9, 'Burr Development', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Chestnut', 10, 'Burr Growth', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Chestnut', 12, 'Fruit Maturity 2', 'March', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Chestnut', 10, 'Burr Growth', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 10),
|
|
|
+ ('Chestnut', 12, 'Fruit Maturity 2', 'March', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Chestnut', 3, 'Leaf Development', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Chestnut', 5, 'Catkins Growth', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Chestnut', 3, 'Leaf Development', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 5, 'Catkins Growth', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 6, 'Flowering 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 7, 'Flowering 2', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 8, 'Flowering 3', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 9, 'Burr Development', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 10, 'Burr Growth', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 12, 'Fruit Maturity 2', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Chestnut', 6, 'Flowering 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 5),
|
|
|
+ ('Chestnut', 7, 'Flowering 2', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Chestnut', 8, 'Flowering 3', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Chestnut', 9, 'Burr Development', 'January', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Chestnut', 13, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 15),
|
|
|
+ ('Chestnut', 13, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Power-N®', 15),
|
|
|
+ ('Chestnut', 15, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Chestnut', 13, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Chestnut', 15, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Chestnut', 0, 'Soil Bio Primer', 'August', 'fertigation', 'Fertigation', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Chestnut', 0, 'Soil Bio Primer', 'August', 'fertigation', 'Fertigation', 'Mycro-Feast®', 10),
|
|
|
+ ('Chestnut', 3, 'Leaf Development', 'October', 'fertigation', 'Fertigation', 'Mycro-Feast®', 10),
|
|
|
+ ('Chestnut', 9, 'Burr Development', 'January', 'fertigation', 'Fertigation', 'Mycro-Feast®', 10),
|
|
|
+ ('Chestnut', 11, 'Fruit Maturity 1', 'Febuary', 'fertigation', 'Fertigation', 'Mycro-Feast®', 10),
|
|
|
+ ('Chestnut', 3, 'Leaf Development', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Chestnut', 3, 'Leaf Development', 'October', 'fertigation', 'Fertigation', 'Opti-Trace® Boron', 2),
|
|
|
+ ('Chestnut', 9, 'Burr Development', 'January', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Chestnut', 11, 'Fruit Maturity 1', 'Febuary', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Chinese Cabbage', 0, 'Planting', 'June', 'ground', 'Spread', 'Granule Prescription Blend', 150),
|
|
|
+ ('Chinese Cabbage', 2, 'Application 2', 'August', 'ground', 'Spread', 'Granule Prescription Blend', 100),
|
|
|
+ ('Chinese Cabbage', 0, 'Planting', 'June', 'primer', 'Soil Primer', 'Mycro-Start®', 5),
|
|
|
+ ('Chinese Cabbage', 0, 'Planting', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Chinese Cabbage', 0, 'Planting', 'June', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Chinese Cabbage', 1, 'Application 1', 'July', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Chinese Cabbage', 3, 'Application 3', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Chinese Cabbage', 1, 'Application 1', 'July', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Chinese Cabbage', 3, 'Application 3', 'August', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Chinese Cabbage', 1, 'Application 1', 'July', 'foliar', 'Foliar', 'Cell-Ex', 12),
|
|
|
+ ('Chinese Cabbage', 3, 'Application 3', 'August', 'foliar', 'Foliar', 'Cell-Ex', 12),
|
|
|
+ ('Citrus', 1, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Citrus', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Citrus', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Citrus', 2, 'Spring Flush', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Citrus', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Citrus', 4, '80-90% Flower', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Citrus', 5, 'Fruit Set', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Citrus', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Citrus', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Citrus', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Citrus', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Citrus', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Citrus', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Citrus', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Citrus', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Citrus', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Citrus', 2, 'Spring Flush', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Citrus', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Citrus', 4, '80-90% Flower', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Citrus', 2, 'Spring Flush', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 4, '80-90% Flower', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 5, 'Fruit Set', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Citrus', 5, 'Fruit Set', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Citrus', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Citrus', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Citrus', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 4),
|
|
|
+ ('Citrus', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 4),
|
|
|
+ ('Citrus', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Opti-Trace® Iron', 5),
|
|
|
+ ('Citrus', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Opti-Trace® Iron', 5),
|
|
|
+ ('Citrus', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Opti-Trace® Iron', 5),
|
|
|
+ ('Citrus', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Citrus', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Citrus', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Citrus', 14, 'Post Harvest', 'April', 'foliar', 'Foliar', 'Power-N®', 15),
|
|
|
+ ('Citrus', 14, 'Post Harvest', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 15),
|
|
|
+ ('Citrus', 14, 'Post Harvest', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.5),
|
|
|
+ ('Citrus', 2, 'Spring Flush', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Citrus', 10, 'Early Maturity 1', 'January', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Citrus', 2, 'Spring Flush', 'August', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Citrus', 4, '80-90% Flower', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Citrus', 8, 'Late Fruit Development', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Citrus', 5, 'Fruit Set', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Citrus', 6, 'Early Fruit Development', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Citrus', 12, 'Mid Maturity 2', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Citrus', 7, 'Mid Fruit Development', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Citrus', 9, 'Summer Flush', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Citrus', 11, 'Mid Maturity 1', 'February', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Citrus', 13, 'Late Maturity', 'March', 'fertigation', 'Fertigation', 'Opti-Mag', 20),
|
|
|
+ ('Citrus', 14, 'Post Harvest', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 40),
|
|
|
+ ('Corn', 0, 'Dry Blend', 'October', 'ground', 'Spread', 'Dry Prescription Blend', 3300),
|
|
|
+ ('Corn', 0, 'Dry Blend', 'October', 'ground', 'Spread', 'Granule Prescription Blend', 200),
|
|
|
+ ('Corn', 1, 'Planter Application', 'October', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Corn', 1, 'Planter Application', 'October', 'primer', 'Soil Primer', 'Nutri-Core® CN', 50),
|
|
|
+ ('Corn', 2, '9 days Post Germination', 'November', 'foliar', 'Foliar', 'Opti-Cal®', 20),
|
|
|
+ ('Corn', 3, '15 days Post Germination', 'November', 'foliar', 'Foliar', 'Opti-Cal®', 20),
|
|
|
+ ('Corn', 5, '43 days Post Germination', 'December', 'foliar', 'Foliar', 'Opti-Cal®', 20),
|
|
|
+ ('Corn', 2, '9 days Post Germination', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 1),
|
|
|
+ ('Corn', 3, '15 days Post Germination', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 1),
|
|
|
+ ('Corn', 5, '43 days Post Germination', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 1),
|
|
|
+ ('Corn', 8, 'Flowering Foliar', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 4),
|
|
|
+ ('Corn', 2, '9 days Post Germination', 'November', 'foliar', 'Foliar', 'ToNik', 20),
|
|
|
+ ('Corn', 3, '15 days Post Germination', 'November', 'foliar', 'Foliar', 'ToNik', 20),
|
|
|
+ ('Corn', 5, '43 days Post Germination', 'December', 'foliar', 'Foliar', 'ToNik', 20),
|
|
|
+ ('Corn', 2, '9 days Post Germination', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Corn', 3, '15 days Post Germination', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Corn', 5, '43 days Post Germination', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Corn', 8, 'Flowering Foliar', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Corn', 6, 'Nitrogen Application', 'December', 'granular', 'Granular', 'Urea', 100),
|
|
|
+ ('Cotton', 0, 'Base Fertiliser Hilling Up', 'January', 'ground', 'Spread', 'Dry Prescription Blend', 5000),
|
|
|
+ ('Cotton', 6, 'Sowing to First Square', 'January', 'ground', 'Spread', 'Pearl Boost', 100),
|
|
|
+ ('Cotton', 7, 'Sowing to First Flower', 'February', 'ground', 'Spread', 'Pearl Boost', 100),
|
|
|
+ ('Cotton', 6, 'Sowing to First Square', 'January', 'ground', 'Spread', 'SOP', 30),
|
|
|
+ ('Cotton', 7, 'Sowing to First Flower', 'February', 'ground', 'Spread', 'SOP', 30),
|
|
|
+ ('Cotton', 5, 'Growth of One Node', 'November', 'foliar', 'Foliar', 'Power-Cal®', 2),
|
|
|
+ ('Cotton', 6, 'Sowing to First Square', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Cotton', 7, 'Sowing to First Flower', 'February', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Cotton', 2, 'Soil Bio Primer - Bed Shaping', 'August', 'foliar', 'Foliar', 'Mycro-Feast®', 5),
|
|
|
+ ('Cotton', 2, 'Soil Bio Primer - Bed Shaping', 'August', 'foliar', 'Foliar', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Cotton', 11, 'Soil Bio Primer after Crop', 'May', 'foliar', 'Foliar', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Cotton', 2, 'Soil Bio Primer - Bed Shaping', 'August', 'foliar', 'Foliar', 'Opti-Cal®', 30),
|
|
|
+ ('Cotton', 6, 'Sowing to First Square', 'January', 'foliar', 'Foliar', 'Opti-Cal®', 30),
|
|
|
+ ('Cotton', 11, 'Soil Bio Primer after Crop', 'May', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Cotton', 3, 'Sowing Injection', 'September', 'foliar', 'Foliar', 'Precede', 5),
|
|
|
+ ('Cotton', 3, 'Sowing Injection', 'September', 'foliar', 'Foliar', 'Mycro-Start®', 5),
|
|
|
+ ('Cotton', 5, 'Growth of One Node', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Cotton', 6, 'Sowing to First Square', 'January', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Cotton', 7, 'Sowing to First Flower', 'February', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Cotton', 5, 'Growth of One Node', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Cotton', 6, 'Sowing to First Square', 'January', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Cotton', 8, 'Sowing to Cut Out', 'March', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Garlic', 0, 'Dry Spread', 'February', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Garlic', 1, 'Soil Bio Primer', 'March', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Garlic', 1, 'Soil Bio Primer', 'March', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Garlic', 1, 'Soil Bio Primer', 'March', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Garlic', 10, 'Foliar 3', 'October', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Garlic', 5, 'Foliar 1', 'May', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Garlic', 7, 'Foliar 2', 'July', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Garlic', 10, 'Foliar 3', 'October', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Garlic', 10, 'Foliar 3', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 0.5),
|
|
|
+ ('Garlic', 5, 'Foliar 1', 'May', 'foliar', 'Foliar', 'Nutri-Core® CN', 20),
|
|
|
+ ('Garlic', 7, 'Foliar 2', 'July', 'foliar', 'Foliar', 'Nutri-Core® CN', 10),
|
|
|
+ ('Garlic', 5, 'Foliar 1', 'May', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 3),
|
|
|
+ ('Garlic', 10, 'Foliar 3', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 3),
|
|
|
+ ('Garlic', 5, 'Foliar 1', 'May', 'foliar', 'Foliar', 'Opti-Trace® Boron', 0.5),
|
|
|
+ ('Garlic', 7, 'Foliar 2', 'July', 'foliar', 'Foliar', 'Opti-Trace® Boron', 0.75),
|
|
|
+ ('Garlic', 10, 'Foliar 3', 'October', 'foliar', 'Foliar', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Garlic', 10, 'Foliar 3', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Garlic', 2, 'Injection at planting', 'March', 'fertigation', 'Fertigation', 'Mycro-Start®', 5),
|
|
|
+ ('Garlic', 3, 'Early Fertigation 1', 'April', 'fertigation', 'Fertigation', 'Mycro-Start®', 5),
|
|
|
+ ('Garlic', 2, 'Injection at planting', 'March', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Garlic', 3, 'Early Fertigation 1', 'April', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Garlic', 2, 'Injection at planting', 'March', 'fertigation', 'Fertigation', 'Opti-Trace® Copper', 5),
|
|
|
+ ('Garlic', 8, 'Fertigation 4', 'August', 'fertigation', 'Fertigation', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Garlic', 9, 'Fertigation 5', 'September', 'fertigation', 'Fertigation', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Garlic', 11, 'Fertigation 6', 'November', 'fertigation', 'Fertigation', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Garlic', 13, 'Fertigation 8', 'January', 'fertigation', 'Fertigation', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Garlic', 2, 'Injection at planting', 'March', 'fertigation', 'Fertigation', 'Opti-Trace® Molybdenum', 2),
|
|
|
+ ('Garlic', 4, 'Early Fertigation 2', 'April', 'fertigation', 'Fertigation', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Garlic', 8, 'Fertigation 4', 'August', 'fertigation', 'Fertigation', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Garlic', 9, 'Fertigation 5', 'September', 'fertigation', 'Fertigation', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Garlic', 11, 'Fertigation 6', 'November', 'fertigation', 'Fertigation', 'Opti-Trace® Molybdenum', 1.5),
|
|
|
+ ('Garlic', 13, 'Fertigation 8', 'January', 'fertigation', 'Fertigation', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Garlic', 2, 'Injection at planting', 'March', 'fertigation', 'Fertigation', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Garlic', 9, 'Fertigation 5', 'September', 'fertigation', 'Fertigation', 'Opti-Trace® Zinc', 0.5),
|
|
|
+ ('Garlic', 11, 'Fertigation 6', 'November', 'fertigation', 'Fertigation', 'Opti-Trace® Zinc', 1),
|
|
|
+ ('Garlic', 13, 'Fertigation 8', 'January', 'fertigation', 'Fertigation', 'Opti-Trace® Zinc', 1),
|
|
|
+ ('Garlic', 3, 'Early Fertigation 1', 'April', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Garlic', 4, 'Early Fertigation 2', 'April', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Garlic', 6, 'Fertigation 3', 'June', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Garlic', 4, 'Early Fertigation 2', 'April', 'fertigation', 'Fertigation', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Garlic', 6, 'Fertigation 3', 'June', 'fertigation', 'Fertigation', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Garlic', 4, 'Early Fertigation 2', 'April', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Garlic', 6, 'Fertigation 3', 'June', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Garlic', 8, 'Fertigation 4', 'August', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 50),
|
|
|
+ ('Garlic', 9, 'Fertigation 5', 'September', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 20),
|
|
|
+ ('Garlic', 11, 'Fertigation 6', 'November', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 50),
|
|
|
+ ('Garlic', 13, 'Fertigation 8', 'January', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 25),
|
|
|
+ ('Garlic', 8, 'Fertigation 4', 'August', 'fertigation', 'Fertigation', 'Opti-Trace® Bio-Check', 3),
|
|
|
+ ('Garlic', 8, 'Fertigation 4', 'August', 'fertigation', 'Fertigation', 'Opti-Trace® Boron', 0.5),
|
|
|
+ ('Garlic', 9, 'Fertigation 5', 'September', 'fertigation', 'Fertigation', 'Opti-Trace® Boron', 1.5),
|
|
|
+ ('Garlic', 8, 'Fertigation 4', 'August', 'fertigation', 'Fertigation', 'Opti-Trace® Iron', 0.3),
|
|
|
+ ('Garlic', 9, 'Fertigation 5', 'September', 'fertigation', 'Fertigation', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Garlic', 11, 'Fertigation 6', 'November', 'fertigation', 'Fertigation', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Garlic', 13, 'Fertigation 8', 'January', 'fertigation', 'Fertigation', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Garlic', 12, 'Fertigation 7', 'December', 'fertigation', 'Fertigation', 'Opti-Mag', 30),
|
|
|
+ ('Hazelnut', 0, 'Ground Application', 'June', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Hazelnut', 0, 'Ground Application', 'June', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Hazelnut', 0, 'Ground Application', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Hazelnut', 0, 'Ground Application', 'June', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Hazelnut', 1, 'Male Flower Development', 'July', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 2, 'Female Flower Bloom', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 3, 'Pollination', 'Aug/Sep', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 4, 'Nut Set', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 5, 'Early Nut Development 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 6, 'Early Nut Development 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 7, 'Mid Nut Development 1 & Bud Initiation', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 8, 'Mid Nut Development 2', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 9, 'Late Nut Development', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Hazelnut', 6, 'Early Nut Development 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Hazelnut', 7, 'Mid Nut Development 1 & Bud Initiation', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Hazelnut', 8, 'Mid Nut Development 2', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Hazelnut', 9, 'Late Nut Development', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Hazelnut', 1, 'Male Flower Development', 'July', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Hazelnut', 2, 'Female Flower Bloom', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Hazelnut', 3, 'Pollination', 'Aug/Sep', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Hazelnut', 1, 'Male Flower Development', 'July', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 2, 'Female Flower Bloom', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 3, 'Pollination', 'Aug/Sep', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 4, 'Nut Set', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 5, 'Early Nut Development 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 6, 'Early Nut Development 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 7, 'Mid Nut Development 1 & Bud Initiation', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 8, 'Mid Nut Development 2', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 9, 'Late Nut Development', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Hazelnut', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Hazelnut', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Hazelnut', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Hazelnut', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Hazelnut', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Hazelnut', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Hazelnut', 4, 'Nut Set', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Hazelnut', 5, 'Early Nut Development 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Hazelnut', 4, 'Nut Set', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Hazelnut', 5, 'Early Nut Development 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Hazelnut', 6, 'Early Nut Development 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Hazelnut', 7, 'Mid Nut Development 1 & Bud Initiation', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Hazelnut', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Hazelnut', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Hazelnut', 2, 'Female Flower Bloom', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Hazelnut', 3, 'Pollination', 'Aug/Sep', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Hazelnut', 5, 'Early Nut Development 1', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Hazelnut', 4, 'Nut Set', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Hazelnut', 7, 'Mid Nut Development 1 & Bud Initiation', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Hazelnut', 11, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Hazelnut', 6, 'Early Nut Development 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Hazelnut', 8, 'Mid Nut Development 2', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Bok Choy', 0, 'Planting', 'November', 'ground', 'Spread', 'Granule Prescription Blend', 250),
|
|
|
+ ('Bok Choy', 2, 'Application 2', 'December', 'ground', 'Spread', 'Granule Prescription Blend', 100),
|
|
|
+ ('Bok Choy', 4, 'Application 4', 'January', 'ground', 'Spread', 'Granule Prescription Blend', 100),
|
|
|
+ ('Bok Choy', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Start®', 5),
|
|
|
+ ('Bok Choy', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Bok Choy', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Bok Choy', 1, 'Application 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Bok Choy', 3, 'Application 3', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Bok Choy', 1, 'Application 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Bok Choy', 3, 'Application 3', 'January', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Bok Choy', 1, 'Application 1', 'December', 'foliar', 'Foliar', 'Cell-Ex', 10),
|
|
|
+ ('Bok Choy', 3, 'Application 3', 'January', 'foliar', 'Foliar', 'Cell-Ex', 10),
|
|
|
+ ('Pasture', 0, 'Autumn Fertiliser Application', 'March', 'ground', 'Spread', 'Dry Prescription Blend', 500),
|
|
|
+ ('Pasture', 1, 'Pasture Renovation', 'March', 'ground', 'Spread', 'Pearl Array', 100),
|
|
|
+ ('Pasture', 3, 'Hay Booster', 'August', 'ground', 'Spread', 'Pearl Boost', 200),
|
|
|
+ ('Pasture', 1, 'Pasture Renovation', 'March', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 0.4),
|
|
|
+ ('Pasture', 1, 'Pasture Renovation', 'March', 'primer', 'Soil Primer', 'Precede', 0.4),
|
|
|
+ ('Pasture', 2, 'Winter Cleaning Spray', 'May', 'foliar', 'Foliar', 'ToNik', 20),
|
|
|
+ ('Pasture', 2, 'Winter Cleaning Spray', 'May', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Pasture', 2, 'Winter Cleaning Spray', 'May', 'foliar', 'Foliar', 'N-Hance', 2),
|
|
|
+ ('Lychee', 1, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Lychee', 2, 'Early Panicle Development', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Lychee', 2, 'Early Panicle Development', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Lychee', 2, 'Early Panicle Development', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Lychee', 2, 'Early Panicle Development', 'August', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lychee', 3, 'Male Flowers (Pre-flowering)', 'August', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lychee', 4, '20-40% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lychee', 5, '80-100% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lychee', 6, 'Petal Fall/Cell Division', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lychee', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Lychee', 6, 'Petal Fall/Cell Division', 'September', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Lychee', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Lychee', 8, 'Early Fruit Development 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Lychee', 9, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Lychee', 10, 'Mid Fruit Development 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Lychee', 11, 'Mid Fruit Development 2', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Lychee', 12, 'Late Fruit Development 1', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Lychee', 2, 'Early Panicle Development', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Lychee', 3, 'Male Flowers (Pre-flowering)', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Lychee', 4, '20-40% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Lychee', 5, '80-100% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Lychee', 2, 'Early Panicle Development', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 3, 'Male Flowers (Pre-flowering)', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 4, '20-40% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 5, '80-100% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 6, 'Petal Fall/Cell Division', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 8, 'Early Fruit Development 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 9, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 10, 'Mid Fruit Development 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 11, 'Mid Fruit Development 2', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 12, 'Late Fruit Development 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Lychee', 8, 'Early Fruit Development 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Lychee', 9, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Lychee', 14, 'Post-Harvest 1', 'January', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Lychee', 15, 'Post-Harvest 2', 'February', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Lychee', 8, 'Early Fruit Development 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Lychee', 9, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Lychee', 10, 'Mid Fruit Development 1', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Lychee', 11, 'Mid Fruit Development 2', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Lychee', 2, 'Early Panicle Development', 'August', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2.5),
|
|
|
+ ('Lychee', 3, 'Male Flowers (Pre-flowering)', 'August', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2.5),
|
|
|
+ ('Lychee', 4, '20-40% Flower', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Lychee', 6, 'Petal Fall/Cell Division', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Lychee', 8, 'Early Fruit Development 1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Lychee', 10, 'Mid Fruit Development 1', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Lychee', 8, 'Early Fruit Development 1', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Lychee', 10, 'Mid Fruit Development 1', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Lychee', 12, 'Late Fruit Development 1', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Macadamia', 0, 'Soil Amendments', 'June', 'ground', 'Spread', 'Dry Prescription Blend', 1000);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Macadamia', 1, 'Root Movement', 'July', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Macadamia', 1, 'Root Movement', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 10),
|
|
|
+ ('Macadamia', 1, 'Root Movement', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Macadamia', 3, 'Raceme Development', 'August', 'foliar', 'Foliar', 'Power-Cal®', 30),
|
|
|
+ ('Macadamia', 4, 'Flowering 10-20%', 'September', 'foliar', 'Foliar', 'Power-Cal®', 30),
|
|
|
+ ('Macadamia', 5, 'Flowering 80-100%', 'September', 'foliar', 'Foliar', 'Power-Cal®', 30),
|
|
|
+ ('Macadamia', 10, 'Mid Nut Growth', 'December', 'foliar', 'Foliar', 'Power-Cal®', 20),
|
|
|
+ ('Macadamia', 12, 'Root Flush', 'February', 'foliar', 'Foliar', 'Power-Cal®', 20),
|
|
|
+ ('Macadamia', 8, 'Nut Drop', 'November', 'foliar', 'Foliar', 'K-Max', 30),
|
|
|
+ ('Macadamia', 9, 'Mid Nut Growth', 'November', 'foliar', 'Foliar', 'K-Max', 30),
|
|
|
+ ('Macadamia', 11, 'Beginning of Oil Accumulation/Late Nut Growth', 'January', 'foliar', 'Foliar', 'K-Max', 20),
|
|
|
+ ('Macadamia', 3, 'Raceme Development', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 10),
|
|
|
+ ('Macadamia', 4, 'Flowering 10-20%', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 10),
|
|
|
+ ('Macadamia', 5, 'Flowering 80-100%', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 10),
|
|
|
+ ('Macadamia', 8, 'Nut Drop', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Macadamia', 9, 'Mid Nut Growth', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Macadamia', 10, 'Mid Nut Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Macadamia', 11, 'Beginning of Oil Accumulation/Late Nut Growth', 'January', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Macadamia', 12, 'Root Flush', 'February', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Macadamia', 3, 'Raceme Development', 'August', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Macadamia', 4, 'Flowering 10-20%', 'September', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Macadamia', 5, 'Flowering 80-100%', 'September', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Macadamia', 2, 'Leaf Flush', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 3, 'Raceme Development', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 4, 'Flowering 10-20%', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 5, 'Flowering 80-100%', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 6, 'Flower Drop/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 7, 'Early Nut Sizing', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 8, 'Nut Drop', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 9, 'Mid Nut Growth', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 10, 'Mid Nut Growth', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 11, 'Beginning of Oil Accumulation/Late Nut Growth', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 12, 'Root Flush', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 13, 'Leaf Flush', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Macadamia', 2, 'Leaf Flush', 'August', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Macadamia', 6, 'Flower Drop/Cell Division', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Macadamia', 7, 'Early Nut Sizing', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Macadamia', 10, 'Mid Nut Growth', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Macadamia', 13, 'Leaf Flush', 'March', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Macadamia', 2, 'Leaf Flush', 'August', 'foliar', 'Foliar', 'Power-N®', 15),
|
|
|
+ ('Macadamia', 6, 'Flower Drop/Cell Division', 'October', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Macadamia', 7, 'Early Nut Sizing', 'October', 'foliar', 'Foliar', 'Power-N®', 20),
|
|
|
+ ('Macadamia', 13, 'Leaf Flush', 'March', 'foliar', 'Foliar', 'Power-N®', 20),
|
|
|
+ ('Macadamia', 14, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Power-N®', 20),
|
|
|
+ ('Macadamia', 15, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Power-N®', 20),
|
|
|
+ ('Macadamia', 14, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 15),
|
|
|
+ ('Macadamia', 15, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 15),
|
|
|
+ ('Macadamia', 14, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Opti-Trace® Copper', 2),
|
|
|
+ ('Macadamia', 15, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Opti-Trace® Copper', 2),
|
|
|
+ ('Macadamia', 14, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Macadamia', 15, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 5),
|
|
|
+ ('Macadamia', 14, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Macadamia', 15, 'Post Harvest', 'May', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Macadamia', 2, 'Leaf Flush', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Macadamia', 11, 'Beginning of Oil Accumulation/Late Nut Growth', 'January', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Macadamia', 3, 'Raceme Development', 'August', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 50),
|
|
|
+ ('Macadamia', 14, 'Post Harvest', 'May', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 40),
|
|
|
+ ('Macadamia', 15, 'Post Harvest', 'May', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Macadamia', 2, 'Leaf Flush', 'August', 'fertigation', 'Fertigation', 'Ironman', 5),
|
|
|
+ ('Macadamia', 7, 'Early Nut Sizing', 'October', 'fertigation', 'Fertigation', 'Ironman', 5),
|
|
|
+ ('Macadamia', 12, 'Root Flush', 'February', 'fertigation', 'Fertigation', 'Ironman', 5),
|
|
|
+ ('Macadamia', 4, 'Flowering 10-20%', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Macadamia', 5, 'Flowering 80-100%', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Macadamia', 12, 'Root Flush', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Macadamia', 0, 'Soil Amendments', 'June', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Macadamia', 6, 'Flower Drop/Cell Division', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Macadamia', 8, 'Nut Drop', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Macadamia', 10, 'Mid Nut Growth', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Macadamia', 13, 'Leaf Flush', 'March', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Macadamia', 7, 'Early Nut Sizing', 'October', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Macadamia', 9, 'Mid Nut Growth', 'November', 'fertigation', 'Fertigation', 'K-Max', 30),
|
|
|
+ ('Macadamia', 11, 'Beginning of Oil Accumulation/Late Nut Growth', 'January', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Macadamia', 7, 'Early Nut Sizing', 'October', 'fertigation', 'Fertigation', 'SOP', 30),
|
|
|
+ ('Macadamia', 8, 'Nut Drop', 'November', 'fertigation', 'Fertigation', 'SOP', 30),
|
|
|
+ ('Macadamia', 9, 'Mid Nut Growth', 'November', 'fertigation', 'Fertigation', 'SOP', 30),
|
|
|
+ ('Macadamia', 10, 'Mid Nut Growth', 'December', 'fertigation', 'Fertigation', 'SOP', 50),
|
|
|
+ ('Mandarin', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Mandarin', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Mandarin', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Mandarin', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Mandarin', 2, '20-30% Flowering', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Mandarin', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Mandarin', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Mandarin', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Mandarin', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Mandarin', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Mandarin', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Mandarin', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Mandarin', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Mandarin', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Mandarin', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Mandarin', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Mandarin', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Mandarin', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Mandarin', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Mandarin', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Mandarin', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Mandarin', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Mandarin', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Mandarin', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Mandarin', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Mandarin', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Mandarin', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Mandarin', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Mandarin', 2, '20-30% Flowering', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Mandarin', 3, '80-90% Flower', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Mandarin', 5, 'Fruitlet Application 1', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Mandarin', 4, 'Shuck Fall', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Mandarin', 7, 'Fruit Fill Application 1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Mandarin', 11, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Mandarin', 6, 'Fruitlet Application 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Mandarin', 8, 'Fruit Fill Application 2', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Nectarine', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Nectarine', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Nectarine', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Nectarine', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Nectarine', 2, '20-30% Flowering', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Nectarine', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Nectarine', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Nectarine', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Nectarine', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Nectarine', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Nectarine', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Nectarine', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Nectarine', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Nectarine', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Nectarine', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Nectarine', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Nectarine', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Nectarine', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Nectarine', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Nectarine', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Nectarine', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Nectarine', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Nectarine', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Nectarine', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Nectarine', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Nectarine', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Nectarine', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Nectarine', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Nectarine', 2, '20-30% Flowering', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Nectarine', 3, '80-90% Flower', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Nectarine', 5, 'Fruitlet Application 1', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Nectarine', 4, 'Shuck Fall', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Nectarine', 7, 'Fruit Fill Application 1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Nectarine', 11, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Nectarine', 6, 'Fruitlet Application 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Nectarine', 8, 'Fruit Fill Application 2', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Oats', 2, 'Sowing', 'March', 'primer', 'Soil Primer', 'Tsunami® Complete', 0.2),
|
|
|
+ ('Oats', 2, 'Sowing', 'March', 'primer', 'Soil Primer', 'ToNik', 40),
|
|
|
+ ('Oats', 2, 'Sowing', 'March', 'primer', 'Soil Primer', 'Opti-Trace® Zinc', 0.4),
|
|
|
+ ('Oats', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Precede', 0.4),
|
|
|
+ ('Oats', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Mycro-Tec SP®', 0.1),
|
|
|
+ ('Oats', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ReLeaf', 3),
|
|
|
+ ('Oats', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ToNik', 10),
|
|
|
+ ('Oats', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'ToNik', 50),
|
|
|
+ ('Oats', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Oats', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Oats', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Oats', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Oats', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'N-Hance', 3),
|
|
|
+ ('Oats', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'N-Hance', 1),
|
|
|
+ ('Oats', 10, 'Fallow Knock Down', 'December', 'foliar', 'Foliar', 'Amplify', 0.2),
|
|
|
+ ('Oats', 9, 'Flowering Foliar Spray', 'September', 'foliar', 'Foliar', 'Frost-Ex®', 5),
|
|
|
+ ('Oats', 9, 'Flowering Foliar Spray', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Oats', 2, 'Sowing', 'March', 'granular', 'Granular', 'Pearl Array', 100),
|
|
|
+ ('Oats', 0, 'Pre-Spread', 'February', 'granular', 'Granular', 'Pearl Boost', 100),
|
|
|
+ ('Oats', 5, 'Granule Spread', 'June', 'granular', 'Granular', 'Pearl Surge', 80);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Olives', 0, 'Dry Spread', 'Mid August', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Olives', 1, 'Soil Bio Primer', 'Late August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Olives', 1, 'Soil Bio Primer', 'Late August', 'primer', 'Soil Primer', 'Mycro-Feast®', 10),
|
|
|
+ ('Olives', 1, 'Soil Bio Primer', 'Late August', 'primer', 'Soil Primer', 'Opti-Cal®', 30),
|
|
|
+ ('Olives', 1, 'Soil Bio Primer', 'Late August', 'primer', 'Soil Primer', 'Opti-Trace® Boron', 5),
|
|
|
+ ('Olives', 3, 'Inflorescence Development 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Olives', 4, '20-40% Flower', 'Early November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Olives', 5, '80-100% Flower', 'Mid November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Olives', 6, 'Cell Division', 'Early December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Olives', 11, 'Mid Fruit Development 2', 'Late April', 'foliar', 'Foliar', 'Opti-Trace® Boron', 1),
|
|
|
+ ('Olives', 12, 'Fruit Ripening', 'Late May', 'foliar', 'Foliar', 'Opti-Trace® Boron', 4),
|
|
|
+ ('Olives', 3, 'Inflorescence Development 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Olives', 4, '20-40% Flower', 'Early November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Olives', 5, '80-100% Flower', 'Mid November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Olives', 6, 'Cell Division', 'Early December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Olives', 3, 'Inflorescence Development 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Olives', 4, '20-40% Flower', 'Early November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Olives', 5, '80-100% Flower', 'Mid November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Olives', 6, 'Cell Division', 'Early December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Olives', 7, 'Fruit Set', 'Late December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Olives', 8, 'Early Fruit Development 1', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Olives', 9, 'Early Fruit Development 2', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Olives', 10, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Olives', 11, 'Mid Fruit Development 2', 'Late April', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Olives', 12, 'Fruit Ripening', 'Late May', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Olives', 10, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Olives', 12, 'Fruit Ripening', 'Late May', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Olives', 3, 'Inflorescence Development 2', 'October', 'foliar', 'Foliar', 'Amino Plex®', 20),
|
|
|
+ ('Olives', 7, 'Fruit Set', 'Late December', 'foliar', 'Foliar', 'Amino Plex®', 10),
|
|
|
+ ('Olives', 8, 'Early Fruit Development 1', 'January', 'foliar', 'Foliar', 'Amino Plex®', 10),
|
|
|
+ ('Olives', 9, 'Early Fruit Development 2', 'February', 'foliar', 'Foliar', 'Amino Plex®', 10),
|
|
|
+ ('Olives', 10, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Amino Plex®', 15),
|
|
|
+ ('Olives', 11, 'Mid Fruit Development 2', 'Late April', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Olives', 7, 'Fruit Set', 'Late December', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Olives', 8, 'Early Fruit Development 1', 'January', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Olives', 10, 'Mid Fruit Development 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Olives', 11, 'Mid Fruit Development 2', 'Late April', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 1),
|
|
|
+ ('Olives', 6, 'Cell Division', 'Early December', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 2),
|
|
|
+ ('Olives', 7, 'Fruit Set', 'Late December', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Olives', 9, 'Early Fruit Development 2', 'February', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Olives', 8, 'Early Fruit Development 1', 'January', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.2),
|
|
|
+ ('Olives', 2, 'Inflorescence Development 1', 'September', 'fertigation', 'Fertigation', 'Amino Plex®', 30),
|
|
|
+ ('Olives', 7, 'Fruit Set', 'Late December', 'fertigation', 'Fertigation', 'Amino Plex®', 40),
|
|
|
+ ('Olives', 2, 'Inflorescence Development 1', 'September', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Orange', 1, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Orange', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Orange', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Orange', 2, 'Spring Flush', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Orange', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Orange', 4, '80-90% Flower', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Orange', 5, 'Fruit Set', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Orange', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Orange', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Orange', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Orange', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Orange', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Orange', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Orange', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Orange', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Orange', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Orange', 2, 'Spring Flush', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Orange', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Orange', 4, '80-90% Flower', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Orange', 2, 'Spring Flush', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 4, '80-90% Flower', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 5, 'Fruit Set', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Orange', 5, 'Fruit Set', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Orange', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Orange', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Orange', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 4),
|
|
|
+ ('Orange', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 4),
|
|
|
+ ('Orange', 6, 'Early Fruit Development', 'November', 'foliar', 'Foliar', 'Opti-Trace® Iron', 5),
|
|
|
+ ('Orange', 9, 'Summer Flush', 'December', 'foliar', 'Foliar', 'Opti-Trace® Iron', 5),
|
|
|
+ ('Orange', 13, 'Late Maturity', 'March', 'foliar', 'Foliar', 'Opti-Trace® Iron', 5),
|
|
|
+ ('Orange', 3, '20-30% Flower', 'September', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Orange', 7, 'Mid Fruit Development', 'November', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Orange', 11, 'Mid Maturity 1', 'February', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Orange', 14, 'Post Harvest', 'April', 'foliar', 'Foliar', 'Power-N®', 15),
|
|
|
+ ('Orange', 14, 'Post Harvest', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 15),
|
|
|
+ ('Orange', 14, 'Post Harvest', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.5),
|
|
|
+ ('Orange', 2, 'Spring Flush', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Orange', 10, 'Early Maturity 1', 'January', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Orange', 2, 'Spring Flush', 'August', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Orange', 4, '80-90% Flower', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Orange', 8, 'Late Fruit Development', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Orange', 5, 'Fruit Set', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Orange', 6, 'Early Fruit Development', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Orange', 12, 'Mid Maturity 2', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Orange', 7, 'Mid Fruit Development', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Orange', 9, 'Summer Flush', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Orange', 11, 'Mid Maturity 1', 'February', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Orange', 13, 'Late Maturity', 'March', 'fertigation', 'Fertigation', 'Opti-Mag', 20),
|
|
|
+ ('Orange', 14, 'Post Harvest', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 40),
|
|
|
+ ('Peach', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Peach', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Peach', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Peach', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Peach', 2, '20-30% Flowering', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Peach', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Peach', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Peach', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Peach', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Peach', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Peach', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Peach', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Peach', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Peach', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Peach', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Peach', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Peach', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Peach', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Peach', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Peach', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Peach', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Peach', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Peach', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Peach', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Peach', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Peach', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Peach', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Peach', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Peach', 2, '20-30% Flowering', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Peach', 3, '80-90% Flower', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Peach', 5, 'Fruitlet Application 1', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Peach', 4, 'Shuck Fall', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Peach', 7, 'Fruit Fill Application 1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Peach', 11, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Peach', 6, 'Fruitlet Application 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Peach', 8, 'Fruit Fill Application 2', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Pear', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Pear', 1, 'Early Bud Break', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Pear', 1, 'Early Bud Break', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Pear', 1, 'Early Bud Break', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Pear', 1, 'Early Bud Break', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 3, '80-90% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 8, 'Fruit Fill Application 2', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pear', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Pear', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Pear', 8, 'Fruit Fill Application 2', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Pear', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Pear', 1, 'Early Bud Break', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pear', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pear', 3, '80-90% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pear', 1, 'Early Bud Break', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 3, '80-90% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 8, 'Fruit Fill Application 2', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pear', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pear', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Pear', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Pear', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Pear', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Pear', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Pear', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Pear', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Pear', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pear', 5, 'Fruitlet Application 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pear', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pear', 7, 'Fruit Fill Application 1', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pear', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Pear', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Pear', 3, '80-90% Flower', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Pear', 4, 'Shuck Fall', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pear', 7, 'Fruit Fill Application 1', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pear', 11, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Pear', 6, 'Fruitlet Application 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Pear', 8, 'Fruit Fill Application 2', 'December', 'fertigation', 'Fertigation', 'K-Max', 20);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Pecans', 0, 'Root Movement', 'August', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Pecans', 3, 'Early Shoot Growth', 'October', 'foliar', 'Foliar', 'Power-Cal®', 15),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'foliar', 'Foliar', 'Power-Cal®', 20),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Power-Cal®', 20),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'foliar', 'Foliar', 'Power-Cal®', 20),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Power-Cal®', 20),
|
|
|
+ ('Pecans', 9, 'Early Fruit Growth', 'November', 'foliar', 'Foliar', 'K-Max', 40),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'K-Max', 30),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Pecans', 9, 'Early Fruit Growth', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 30),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 30),
|
|
|
+ ('Pecans', 3, 'Early Shoot Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 9, 'Early Fruit Growth', 'November', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 2),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Power-N®', 20),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'foliar', 'Foliar', 'Power-N®', 20),
|
|
|
+ ('Pecans', 9, 'Early Fruit Growth', 'November', 'foliar', 'Foliar', 'Power-N®', 20),
|
|
|
+ ('Pecans', 3, 'Early Shoot Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 9, 'Early Fruit Growth', 'November', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Pecans', 3, 'Early Shoot Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 9, 'Early Fruit Growth', 'November', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Pecans', 3, 'Early Shoot Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'foliar', 'Foliar', 'Opti-Trace® Copper', 1),
|
|
|
+ ('Pecans', 0, 'Root Movement', 'August', 'fertigation', 'Fertigation', 'SOA', 40),
|
|
|
+ ('Pecans', 2, 'Bud Break / Development', 'September', 'fertigation', 'Fertigation', 'SOA', 40),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'fertigation', 'Fertigation', 'SOA', 40),
|
|
|
+ ('Pecans', 3, 'Early Shoot Growth', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Pecans', 12, 'Early Fruit Growth', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 50),
|
|
|
+ ('Pecans', 11, 'Early Fruit Growth', 'December', 'fertigation', 'Fertigation', 'K-Max', 50),
|
|
|
+ ('Pecans', 6, 'Flowering and Pollnation', 'October', 'fertigation', 'Fertigation', 'SOP', 25),
|
|
|
+ ('Pecans', 7, '100% Flowering', 'October', 'fertigation', 'Fertigation', 'SOP', 25),
|
|
|
+ ('Pecans', 8, 'Fruit Set/Cell Division', 'November', 'fertigation', 'Fertigation', 'SOP', 25),
|
|
|
+ ('Pecans', 9, 'Early Fruit Growth', 'November', 'fertigation', 'Fertigation', 'SOP', 25),
|
|
|
+ ('Pecans', 10, 'Early Fruit Growth', 'December', 'fertigation', 'Fertigation', 'SOP', 50),
|
|
|
+ ('Pecans', 2, 'Bud Break / Development', 'September', 'fertigation', 'Fertigation', 'MAP', 25),
|
|
|
+ ('Pecans', 4, 'Early Catkin Growth', 'October', 'fertigation', 'Fertigation', 'MAP', 25),
|
|
|
+ ('Pecans', 5, 'Small Nut Visible', 'October', 'fertigation', 'Fertigation', 'MAP', 25),
|
|
|
+ ('Persimmon', 0, 'Dry Spread', 'August', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Persimmon', 1, 'Early Bud Break', 'September', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Persimmon', 1, 'Early Bud Break', 'September', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Persimmon', 1, 'Early Bud Break', 'September', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Persimmon', 2, 'Bud Burst', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 3, '20-40% Flower', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 5, 'Petal Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 8, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 9, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Persimmon', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Persimmon', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Persimmon', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Persimmon', 2, 'Bud Burst', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Persimmon', 3, '20-40% Flower', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Persimmon', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Persimmon', 5, 'Petal Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Persimmon', 2, 'Bud Burst', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 3, '20-40% Flower', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 4, '80-100% Flower', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 5, 'Petal Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 8, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 9, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Persimmon', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Persimmon', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Persimmon', 6, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Persimmon', 7, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Persimmon', 8, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Persimmon', 9, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Persimmon', 10, 'Mid Fruit Development 2', 'January', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Persimmon', 11, 'Late Fruit Development 1', 'Febuary', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Persimmon', 12, 'Late Fruit Development 2', 'March', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Persimmon', 13, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Persimmon', 14, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Persimmon', 13, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Persimmon', 14, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Persimmon', 15, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Persimmon', 13, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Persimmon', 14, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Persimmon', 15, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Persimmon', 15, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Persimmon', 4, '80-100% Flower', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Persimmon', 6, 'Fruit Set/Cell Division', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Persimmon', 8, 'Early Fruit Development 2', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Persimmon', 5, 'Petal Fall/Cell Division', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Persimmon', 7, 'Early Fruit Development 1', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Persimmon', 9, 'Mid Fruit Development 1', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Persimmon', 11, 'Late Fruit Development 1', 'Febuary', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Persimmon', 12, 'Late Fruit Development 2', 'March', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Persimmon', 13, 'Post Harvest 1', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Persimmon', 14, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Prune', 1, 'Dry Spread', 'August', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Prune', 0, 'Soil Bio Primer', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Prune', 0, 'Soil Bio Primer', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Prune', 5, '80-100% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Prune', 6, 'Shuck Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Prune', 8, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Prune', 10, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Prune', 12, 'Late Fruit Development 1', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Prune', 13, 'Late Fruit Development 2', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Prune', 10, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Prune', 5, '80-100% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 10),
|
|
|
+ ('Prune', 6, 'Shuck Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 10),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Prune', 8, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Prune', 10, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Prune', 5, '80-100% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Prune', 6, 'Shuck Fall/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Prune', 8, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Prune', 10, 'Mid Fruit Development 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Prune', 12, 'Late Fruit Development 1', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Prune', 13, 'Late Fruit Development 2', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Prune', 8, 'Early Fruit Development 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® Iron', 5),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® Boron', 2),
|
|
|
+ ('Prune', 14, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Boron', 10),
|
|
|
+ ('Prune', 14, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Prune', 14, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Prune', 16, 'Scenescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Prune', 14, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Prune', 16, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Prune', 16, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Prune', 3, 'Early Bud Break', 'September', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Prune', 3, 'Early Bud Break', 'September', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Prune', 5, '80-100% Flower', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Prune', 10, 'Mid Fruit Development 1', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 40),
|
|
|
+ ('Prune', 6, 'Shuck Fall/Cell Division', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Prune', 11, 'Mid Fruit Development 2', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'fertigation', 'Fertigation', 'Opti-Trace® Iron', 10),
|
|
|
+ ('Prune', 7, 'Fruit Set/Cell Division', 'October', 'fertigation', 'Fertigation', 'Opti-Mag', 10),
|
|
|
+ ('Prune', 8, 'Early Fruit Development 1', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Prune', 9, 'Early Fruit Development 2', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Prune', 12, 'Late Fruit Development 1', 'January', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Prune', 13, 'Late Fruit Development 2', 'January', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Prune', 14, 'Post-Harvest 1', 'April', 'fertigation', 'Fertigation', 'Eco-Gibb®', 60),
|
|
|
+ ('Pistachio', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 2000),
|
|
|
+ ('Pistachio', 1, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Pistachio', 1, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Pistachio', 1, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Pistachio', 3, '20% Flower', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 4, '80% Flowering', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 5, 'Shoot Growth & Foliage', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 6, 'Hull Expansion', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 7, 'Shell Hardening', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 8, 'Nut Fill', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 9, 'Shell Split', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 10, 'Nut Maturation', 'March', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Pistachio', 3, '20% Flower', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pistachio', 4, '80% Flowering', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pistachio', 5, 'Shoot Growth & Foliage', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Pistachio', 3, '20% Flower', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pistachio', 4, '80% Flowering', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Pistachio', 5, 'Shoot Growth & Foliage', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pistachio', 6, 'Hull Expansion', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pistachio', 7, 'Shell Hardening', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pistachio', 8, 'Nut Fill', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pistachio', 9, 'Shell Split', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pistachio', 10, 'Nut Maturation', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Pistachio', 6, 'Hull Expansion', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 5),
|
|
|
+ ('Pistachio', 7, 'Shell Hardening', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pistachio', 8, 'Nut Fill', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pistachio', 9, 'Shell Split', 'January', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pistachio', 10, 'Nut Maturation', 'March', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Pistachio', 11, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Pistachio', 12, 'Post Harvest 2', 'May', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Pistachio', 11, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Pistachio', 12, 'Post Harvest 2', 'May', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Pistachio', 13, 'Senescence', '', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Pistachio', 11, 'Post Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Pistachio', 12, 'Post Harvest 2', 'May', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Pistachio', 13, 'Senescence', '', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Pistachio', 13, 'Senescence', '', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Pistachio', 2, 'Early Bud Break', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Pistachio', 2, 'Early Bud Break', 'August', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Pistachio', 3, '20% Flower', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 30),
|
|
|
+ ('Pistachio', 5, 'Shoot Growth & Foliage', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Pistachio', 7, 'Shell Hardening', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Pistachio', 9, 'Shell Split', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Pistachio', 6, 'Hull Expansion', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pistachio', 8, 'Nut Fill', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Pistachio', 10, 'Nut Maturation', 'March', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Pistachio', 11, 'Post Harvest 1', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Pistachio', 12, 'Post Harvest 2', 'May', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Plum', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Plum', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Plum', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Plum', 1, 'Early Bud Break', 'July', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Plum', 2, '20-30% Flowering', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Plum', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Plum', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Plum', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Plum', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Plum', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 4),
|
|
|
+ ('Plum', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Plum', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Plum', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Plum', 1, 'Early Bud Break', 'July', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 2, '20-30% Flowering', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 3, '80-90% Flower', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 8, 'Fruit Fill Application 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 9, 'Fruit Fill Application 3 (Later Varieties)', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2.5),
|
|
|
+ ('Plum', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 3),
|
|
|
+ ('Plum', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Plum', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Plum', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Plum', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Plum', 12, 'Senescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Plum', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Plum', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Plum', 4, 'Shuck Fall', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Plum', 5, 'Fruitlet Application 1', 'September', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Plum', 6, 'Fruitlet Application 2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Plum', 7, 'Fruit Fill Application 1', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 2),
|
|
|
+ ('Plum', 10, 'Post Harvest 1', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Plum', 11, 'Post Harvest 2', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Plum', 2, '20-30% Flowering', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Plum', 3, '80-90% Flower', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Plum', 5, 'Fruitlet Application 1', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Plum', 4, 'Shuck Fall', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Plum', 7, 'Fruit Fill Application 1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Plum', 11, 'Post Harvest 2', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 50),
|
|
|
+ ('Plum', 6, 'Fruitlet Application 2', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Plum', 8, 'Fruit Fill Application 2', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Pomegranate', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Pomegranate', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Pomegranate', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Pomegranate', 11, 'Mid Fruit Development 2', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Pomegranate', 15, 'Post-Harvest 2', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Pomegranate', 9, 'Early Fruit Development 2', 'November', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 5),
|
|
|
+ ('Pomegranate', 13, 'Late Fruit Development 2', 'January', 'foliar', 'Foliar', 'Agri-Vive® 3.14.32', 5),
|
|
|
+ ('Pomegranate', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Pomegranate', 11, 'Mid Fruit Development 2', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Pomegranate', 15, 'Post-Harvest 2', 'January', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Pomegranate', 6, 'Petal Fall/Cell Division', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Pomegranate', 7, 'Fruit Set/Cell Division', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Pomegranate', 10, 'Mid Fruit Development 1', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Pomegranate', 11, 'Mid Fruit Development 2', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Pomegranate', 14, 'Post-Harvest 1', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Pomegranate', 15, 'Post-Harvest 2', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Pomegranate', 6, 'Petal Fall/Cell Division', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Pomegranate', 10, 'Mid Fruit Development 1', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Pomegranate', 14, 'Post-Harvest 1', 'January', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Pomegranate', 2, 'Early Bud Break', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Pomegranate', 2, 'Early Bud Break', 'August', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Pomegranate', 4, '20-40% Flower', 'August', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 5, '80-100% Flower', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 6, 'Petal Fall/Cell Division', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 7, 'Fruit Set/Cell Division', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 8, 'Early Fruit Development 1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 10, 'Mid Fruit Development 1', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 11, 'Mid Fruit Development 2', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 13, 'Late Fruit Development 2', 'January', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Pomegranate', 9, 'Early Fruit Development 2', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® 18.6.14', 10),
|
|
|
+ ('Pomegranate', 12, 'Late Fruit Development 1', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® 18.6.14', 10),
|
|
|
+ ('Pomegranate', 15, 'Post-Harvest 2', 'January', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Potato', 0, 'Dry Spread', 'September', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'ground', 'Spread', 'Pearl Charge', 150),
|
|
|
+ ('Potato', 5, '40 Days', 'November', 'ground', 'Spread', 'Pearl Cascade', 150),
|
|
|
+ ('Potato', 7, '50 Days', 'December', 'ground', 'Spread', 'Pearl Cascade', 150),
|
|
|
+ ('Potato', 4, '35 Days', 'November', 'ground', 'Spread', 'SOP', 150),
|
|
|
+ ('Potato', 6, '45 Days', 'November', 'ground', 'Spread', 'SOP', 150),
|
|
|
+ ('Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 2),
|
|
|
+ ('Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Opti-Cal®', 20),
|
|
|
+ ('Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Opti-Trace® Bud Max', 10),
|
|
|
+ ('Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Power-N®', 20),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Potato', 8, '55 Days', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Opti-Cal®', 25),
|
|
|
+ ('Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Potato', 8, '55 Days', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Potato', 8, '55 Days', 'December', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Opti-Mag', 10),
|
|
|
+ ('Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Opti-Mag', 10),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.5),
|
|
|
+ ('Potato', 11, 'Knockdown', 'February', 'foliar', 'Foliar', 'Opti-Trace® Boron', 5),
|
|
|
+ ('Potato', 2, '20 Days / Emergence', 'October', 'fertigation', 'Fertigation', 'Nutri-Core® CN', 50),
|
|
|
+ ('Potato', 5, '40 Days', 'November', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Potato', 4, '35 Days', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Potato', 5, '40 Days', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Potato', 3, '30 Days', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Potato', 7, '50 Days', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Soybeans', 0, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Precede', 0.4),
|
|
|
+ ('Soybeans', 0, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Mycro-Start®', 0.4),
|
|
|
+ ('Soybeans', 0, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Green Rhiz', 0.05),
|
|
|
+ ('Soybeans', 3, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'Cell-Ex', 8),
|
|
|
+ ('Soybeans', 3, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'N-Hance', 3),
|
|
|
+ ('Soybeans', 3, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Soybeans', 5, 'Flowering Foliar', 'July', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.5),
|
|
|
+ ('Soybeans', 5, 'Flowering Foliar', 'July', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Soybeans', 5, 'Flowering Foliar', 'July', 'foliar', 'Foliar', 'Power-Cal®', 8),
|
|
|
+ ('Soybeans', 1, 'Sowing', 'April', 'granular', 'Granular', 'Pearl Array', 60),
|
|
|
+ ('Raspberry', 2, 'Early bud Swell', 'August', 'primer', 'Soil Primer', 'Mycro-Start®', 10),
|
|
|
+ ('Raspberry', 3, 'Bud Swell', 'September', 'primer', 'Soil Primer', 'Mycro-Start®', 10),
|
|
|
+ ('Raspberry', 2, 'Early bud Swell', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 10),
|
|
|
+ ('Raspberry', 3, 'Bud Swell', 'September', 'primer', 'Soil Primer', 'Mycro-Feast®', 10),
|
|
|
+ ('Raspberry', 2, 'Early bud Swell', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 2),
|
|
|
+ ('Raspberry', 3, 'Bud Swell', 'September', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 2),
|
|
|
+ ('Raspberry', 2, 'Early bud Swell', 'August', 'primer', 'Soil Primer', 'Opti-Trace® Complete', 2),
|
|
|
+ ('Raspberry', 3, 'Bud Swell', 'September', 'primer', 'Soil Primer', 'Opti-Trace® Complete', 2),
|
|
|
+ ('Raspberry', 4, 'Early Flowering - 10%', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 5, 'Flowering 60%', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 6, 'Fruit Set-Cell Division', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 9, '25% Colour', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 11, 'Harvest-Post harvest', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 12, 'Post Harvest Total (Spilt over 3 application)', 'March', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Raspberry', 6, 'Fruit Set-Cell Division', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 15),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Raspberry', 12, 'Post Harvest Total (Spilt over 3 application)', 'March', 'foliar', 'Foliar', 'Agri-Vive® RF', 45),
|
|
|
+ ('Raspberry', 4, 'Early Flowering - 10%', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Raspberry', 5, 'Flowering 60%', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Raspberry', 6, 'Fruit Set-Cell Division', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 4),
|
|
|
+ ('Raspberry', 4, 'Early Flowering - 10%', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 5, 'Flowering 60%', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 6, 'Fruit Set-Cell Division', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Raspberry', 9, '25% Colour', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Raspberry', 11, 'Harvest-Post harvest', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Raspberry', 12, 'Post Harvest Total (Spilt over 3 application)', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 6);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'foliar', 'Foliar', 'Opti-Trace® Complete', 2),
|
|
|
+ ('Raspberry', 9, '25% Colour', 'January', 'foliar', 'Foliar', 'Opti-Trace® Complete', 2),
|
|
|
+ ('Raspberry', 11, 'Harvest-Post harvest', 'February', 'foliar', 'Foliar', 'Opti-Trace® Complete', 2),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Raspberry', 12, 'Post Harvest Total (Spilt over 3 application)', 'March', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 30),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 8),
|
|
|
+ ('Raspberry', 9, '25% Colour', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 8),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 8),
|
|
|
+ ('Raspberry', 11, 'Harvest-Post harvest', 'February', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 8),
|
|
|
+ ('Raspberry', 1, 'Soil Amendments', 'July', 'fertigation', 'Fertigation', 'Nutri-Core® Soil Acidity Regulator', 20),
|
|
|
+ ('Raspberry', 4, 'Early Flowering - 10%', 'October', 'fertigation', 'Fertigation', 'Nutri-Core® Soil Acidity Regulator', 20),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'fertigation', 'Fertigation', 'Nutri-Core® Soil Acidity Regulator', 20),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'fertigation', 'Fertigation', 'Nutri-Core® Soil Acidity Regulator', 20),
|
|
|
+ ('Raspberry', 1, 'Soil Amendments', 'July', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 30),
|
|
|
+ ('Raspberry', 2, 'Early bud Swell', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Raspberry', 3, 'Bud Swell', 'September', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 30),
|
|
|
+ ('Raspberry', 12, 'Post Harvest Total (Spilt over 3 application)', 'March', 'fertigation', 'Fertigation', 'Agri-Vive® Post Harvest Boost', 90),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 30),
|
|
|
+ ('Raspberry', 9, '25% Colour', 'January', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 30),
|
|
|
+ ('Raspberry', 11, 'Harvest-Post harvest', 'February', 'fertigation', 'Fertigation', 'Nutri-Core® NP', 30),
|
|
|
+ ('Raspberry', 4, 'Early Flowering - 10%', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Raspberry', 5, 'Flowering 60%', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Raspberry', 6, 'Fruit Set-Cell Division', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Raspberry', 4, 'Early Flowering - 10%', 'October', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 9, '25% Colour', 'January', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'fertigation', 'Fertigation', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Raspberry', 8, 'Fruit Colouring', 'December', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Raspberry', 10, '75% Colour', 'January', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Raspberry', 2, 'Early bud Swell', 'August', 'fertigation', 'Fertigation', 'Opti-Mag', 10),
|
|
|
+ ('Raspberry', 6, 'Fruit Set-Cell Division', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Raspberry', 7, 'Green Fruit', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Raspberry', 9, '25% Colour', 'January', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Raspberry', 11, 'Harvest-Post harvest', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Raspberry', 12, 'Post Harvest Total (Spilt over 3 application)', 'March', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 120),
|
|
|
+ ('Spinach', 0, 'Planting', 'November', 'ground', 'Spread', 'Granule Prescription Blend', 250),
|
|
|
+ ('Spinach', 2, 'Application 2', 'December', 'ground', 'Spread', 'Granule Prescription Blend', 100),
|
|
|
+ ('Spinach', 4, 'Application 4', 'January', 'ground', 'Spread', 'Granule Prescription Blend', 100),
|
|
|
+ ('Spinach', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Start®', 5),
|
|
|
+ ('Spinach', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Spinach', 0, 'Planting', 'November', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Spinach', 1, 'Application 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Spinach', 3, 'Application 3', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Spinach', 1, 'Application 1', 'December', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Spinach', 3, 'Application 3', 'January', 'foliar', 'Foliar', 'Bio-Sea® Black', 2),
|
|
|
+ ('Spinach', 1, 'Application 1', 'December', 'foliar', 'Foliar', 'Cell-Ex', 10),
|
|
|
+ ('Spinach', 3, 'Application 3', 'January', 'foliar', 'Foliar', 'Cell-Ex', 10),
|
|
|
+ ('Strawberry', 0, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Strawberry', 1, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Strawberry', 1, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Strawberry', 1, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Nutri-Core Soil Activator', 40),
|
|
|
+ ('Strawberry', 4, 'Vegetative Growth', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 5, '1st wave flowering & fruit set', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 6, '1st wave fruit growth', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 7, '2nd wave flowering & fruit set', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 8, '2nd wave fruit growth', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 9, '3rd wave flowering & fruit set', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 10, '3rd wave fruit growth', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 11, '4th wave flowering & fruit set', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 12, '4th wave fruit growth', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Strawberry', 3, 'Establishment', 'Aug/Sep', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Strawberry', 4, 'Vegetative Growth', 'September', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Strawberry', 5, '1st wave flowering & fruit set', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Strawberry', 7, '2nd wave flowering & fruit set', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Strawberry', 9, '3rd wave flowering & fruit set', 'January', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Strawberry', 11, '4th wave flowering & fruit set', 'February', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Strawberry', 3, 'Establishment', 'Aug/Sep', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 4, 'Vegetative Growth', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 5, '1st wave flowering & fruit set', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 6, '1st wave fruit growth', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 7, '2nd wave flowering & fruit set', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 8, '2nd wave fruit growth', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 9, '3rd wave flowering & fruit set', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 10, '3rd wave fruit growth', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 11, '4th wave flowering & fruit set', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 12, '4th wave fruit growth', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Strawberry', 6, '1st wave fruit growth', 'October', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Strawberry', 8, '2nd wave fruit growth', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Strawberry', 10, '3rd wave fruit growth', 'January', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Strawberry', 12, '4th wave fruit growth', 'February', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Strawberry', 3, 'Establishment', 'Aug/Sep', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Strawberry', 4, 'Vegetative Growth', 'September', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Strawberry', 5, '1st wave flowering & fruit set', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Strawberry', 7, '2nd wave flowering & fruit set', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Strawberry', 9, '3rd wave flowering & fruit set', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Strawberry', 11, '4th wave flowering & fruit set', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Strawberry', 3, 'Establishment', 'Aug/Sep', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Strawberry', 4, 'Vegetative Growth', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 30),
|
|
|
+ ('Strawberry', 6, '1st wave fruit growth', 'October', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Strawberry', 8, '2nd wave fruit growth', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Strawberry', 10, '3rd wave fruit growth', 'January', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Strawberry', 12, '4th wave fruit growth', 'February', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Sweet Potato', 0, 'Dry Spread', 'September', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'ground', 'Spread', 'Pearl Charge', 150),
|
|
|
+ ('Sweet Potato', 5, '40 Days', 'November', 'ground', 'Spread', 'Pearl Cascade', 150),
|
|
|
+ ('Sweet Potato', 7, '50 Days', 'December', 'ground', 'Spread', 'Pearl Cascade', 150),
|
|
|
+ ('Sweet Potato', 4, '35 Days', 'November', 'ground', 'Spread', 'SOP', 150),
|
|
|
+ ('Sweet Potato', 6, '45 Days', 'November', 'ground', 'Spread', 'SOP', 150),
|
|
|
+ ('Sweet Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 2),
|
|
|
+ ('Sweet Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Sweet Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Opti-Cal®', 20),
|
|
|
+ ('Sweet Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Opti-Trace® Bud Max', 10),
|
|
|
+ ('Sweet Potato', 1, 'Planting Liquid', 'September', 'primer', 'Soil Primer', 'Power-N®', 20),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Sweet Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Sweet Potato', 8, '55 Days', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Sweet Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Opti-Cal®', 25),
|
|
|
+ ('Sweet Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Sweet Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Sweet Potato', 8, '55 Days', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Sweet Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Power-N®', 5),
|
|
|
+ ('Sweet Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Sweet Potato', 8, '55 Days', 'December', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Sweet Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Sweet Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Sweet Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Opti-Mag', 10),
|
|
|
+ ('Sweet Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Opti-Mag', 10),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Sweet Potato', 5, '40 Days', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Sweet Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 5),
|
|
|
+ ('Sweet Potato', 2, '20 Days / Emergence', 'October', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Sweet Potato', 6, '45 Days', 'November', 'foliar', 'Foliar', 'Opti-Trace® Manganese', 1),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.5),
|
|
|
+ ('Sweet Potato', 11, 'Knockdown', 'February', 'foliar', 'Foliar', 'Opti-Trace® Boron', 5),
|
|
|
+ ('Sweet Potato', 2, '20 Days / Emergence', 'October', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Sweet Potato', 5, '40 Days', 'November', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Sweet Potato', 4, '35 Days', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Sweet Potato', 5, '40 Days', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Sweet Potato', 3, '30 Days', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Sweet Potato', 7, '50 Days', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tablegrape', 1, 'Dry Spread', 'August', 'ground', 'Spread', 'Dry Prescription Blend', 3000),
|
|
|
+ ('Tablegrape', 0, 'Soil Bio Primer', 'Auguat', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Tablegrape', 0, 'Soil Bio Primer', 'Auguat', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Tablegrape', 0, 'Soil Bio Primer', 'Auguat', 'primer', 'Soil Primer', 'Mycro-Start®', 10),
|
|
|
+ ('Tablegrape', 3, 'Shoots 10cm - EL 12', 'September', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 4, 'Pre Flower - EL 17', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 5, 'Flowering - EL 23', 'October', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 6, '80% Caps off - EL 25', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 7, 'Fruit Set - EL 27', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 8, 'Berries Pea Sized - EL 31', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 9, 'Pre Bunch Closure - EL 32', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 10, 'Bunch Closure - EL 33', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 11, 'Veraison - EL 35', 'March', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tablegrape', 10, 'Bunch Closure - EL 33', 'February', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Tablegrape', 11, 'Veraison - EL 35', 'March', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Tablegrape', 3, 'Shoots 10cm - EL 12', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Tablegrape', 4, 'Pre Flower - EL 17', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Tablegrape', 5, 'Flowering - EL 23', 'October', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Tablegrape', 6, '80% Caps off - EL 25', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Tablegrape', 7, 'Fruit Set - EL 27', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Tablegrape', 8, 'Berries Pea Sized - EL 31', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Tablegrape', 3, 'Shoots 10cm - EL 12', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 4, 'Pre Flower - EL 17', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 5, 'Flowering - EL 23', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 6, '80% Caps off - EL 25', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 7, 'Fruit Set - EL 27', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 8, 'Berries Pea Sized - EL 31', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 9, 'Pre Bunch Closure - EL 32', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 10, 'Bunch Closure - EL 33', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 11, 'Veraison - EL 35', 'March', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Tablegrape', 8, 'Berries Pea Sized - EL 31', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Tablegrape', 9, 'Pre Bunch Closure - EL 32', 'January', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Tablegrape', 10, 'Bunch Closure - EL 33', 'February', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Tablegrape', 11, 'Veraison - EL 35', 'March', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Tablegrape', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 15),
|
|
|
+ ('Tablegrape', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Power-N®', 15),
|
|
|
+ ('Tablegrape', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Power-N®', 30),
|
|
|
+ ('Tablegrape', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.5),
|
|
|
+ ('Tablegrape', 5, 'Flowering - EL 23', 'October', 'foliar', 'Foliar', 'Mycro-Tec Lockout® Liquid', 10),
|
|
|
+ ('Tablegrape', 9, 'Pre Bunch Closure - EL 32', 'January', 'foliar', 'Foliar', 'Mycro-Tec Lockout® Liquid', 10),
|
|
|
+ ('Tablegrape', 11, 'Veraison - EL 35', 'March', 'foliar', 'Foliar', 'Mycro-Tec Lockout® Liquid', 10),
|
|
|
+ ('Tablegrape', 12, 'Pre Harvest', 'March', 'foliar', 'Foliar', 'Mycro-Tec Lockout® Liquid', 20),
|
|
|
+ ('Tablegrape', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Tablegrape', 4, 'Pre Flower - EL 17', 'October', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Tablegrape', 5, 'Flowering - EL 23', 'October', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Tablegrape', 15, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Tablegrape', 3, 'Shoots 10cm - EL 12', 'September', 'foliar', 'Foliar', 'Opti-Trace® Iron', 2),
|
|
|
+ ('Tablegrape', 6, '80% Caps off - EL 25', 'November', 'foliar', 'Foliar', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Tablegrape', 7, 'Fruit Set - EL 27', 'November', 'foliar', 'Foliar', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Tablegrape', 8, 'Berries Pea Sized - EL 31', 'December', 'foliar', 'Foliar', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Tablegrape', 9, 'Pre Bunch Closure - EL 32', 'January', 'foliar', 'Foliar', 'Opti-Trace® Iron', 1),
|
|
|
+ ('Tablegrape', 2, 'Wooly Bud - EL 3', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 75),
|
|
|
+ ('Tablegrape', 2, 'Wooly Bud - EL 3', 'August', 'fertigation', 'Fertigation', 'Mycro-Start®', 5),
|
|
|
+ ('Tablegrape', 4, 'Pre Flower - EL 17', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tablegrape', 6, '80% Caps off - EL 25', 'November', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tablegrape', 8, 'Berries Pea Sized - EL 31', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tablegrape', 9, 'Pre Bunch Closure - EL 32', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tablegrape', 3, 'Shoots 10cm - EL 12', 'September', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Tablegrape', 7, 'Fruit Set - EL 27', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Tablegrape', 10, 'Bunch Closure - EL 33', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 40),
|
|
|
+ ('Tablegrape', 10, 'Bunch Closure - EL 33', 'February', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Tablegrape', 11, 'Veraison - EL 35', 'March', 'fertigation', 'Fertigation', 'K-Max', 40);
|
|
|
+
|
|
|
+INSERT INTO playbook_applications
|
|
|
+ (crop_name, stage_index, stage_label, stage_month, product_type, product_type_label, product_name, rate)
|
|
|
+VALUES
|
|
|
+ ('Tablegrape', 13, 'Post-Harvest 1', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Tomato', 1, 'Dry Spread', 'September', 'ground', 'Spread', 'Dry Prescription Blend', 3500),
|
|
|
+ ('Tomato', 0, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Tomato', 0, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Mycro-Feast®', 5),
|
|
|
+ ('Tomato', 0, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Opti-Cal®', 10),
|
|
|
+ ('Tomato', 0, 'Soil Bio Primer', 'August', 'primer', 'Soil Primer', 'Opti-Trace® Boron', 2),
|
|
|
+ ('Tomato', 5, 'V3', 'November', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tomato', 7, 'Flowering', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tomato', 9, 'FF3', 'December', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tomato', 11, 'Fill and Flowering', 'January', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tomato', 14, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Power-Cal®', 10),
|
|
|
+ ('Tomato', 14, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 15),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 10),
|
|
|
+ ('Tomato', 4, 'V2', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 3),
|
|
|
+ ('Tomato', 5, 'V3', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Tomato', 7, 'Flowering', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Tomato', 9, 'FF3', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Tomato', 11, 'Fill and Flowering', 'January', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Tomato', 13, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Tomato', 14, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Bio-Sea® FKF', 5),
|
|
|
+ ('Tomato', 4, 'V2', 'October', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Tomato', 5, 'V3', 'November', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Tomato', 7, 'Flowering', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Tomato', 9, 'FF3', 'December', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Tomato', 11, 'Fill and Flowering', 'January', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Tomato', 13, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Tomato', 14, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Opti-Trace® MAX', 3),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Opti-Trace® MAX', 5),
|
|
|
+ ('Tomato', 5, 'V3', 'November', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Tomato', 9, 'FF3', 'December', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Tomato', 11, 'Fill and Flowering', 'January', 'foliar', 'Foliar', 'Agri-Vive® RF', 5),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Agri-Vive® RF', 5),
|
|
|
+ ('Tomato', 4, 'V2', 'October', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Tomato', 7, 'Flowering', 'December', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Tomato', 11, 'Fill and Flowering', 'January', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Tomato', 13, 'Ripening and Fruit Fill', 'February', 'foliar', 'Foliar', 'Agri-Vive® 10.10.10', 10),
|
|
|
+ ('Tomato', 7, 'Flowering', 'December', 'foliar', 'Foliar', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Tomato', 9, 'FF3', 'December', 'foliar', 'Foliar', 'Mycro-Tec SP®', 5),
|
|
|
+ ('Tomato', 7, 'Flowering', 'December', 'foliar', 'Foliar', 'Mycro-Tec Lockout® Powder', 0.1),
|
|
|
+ ('Tomato', 9, 'FF3', 'December', 'foliar', 'Foliar', 'Mycro-Tec Lockout® Powder', 0.1),
|
|
|
+ ('Tomato', 2, 'Emergence', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tomato', 7, 'Flowering', 'December', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tomato', 11, 'Fill and Flowering', 'January', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tomato', 13, 'Ripening and Fruit Fill', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Tomato', 3, 'V1', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® 18.6.14', 20),
|
|
|
+ ('Tomato', 5, 'V3', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® 18.6.14', 20),
|
|
|
+ ('Tomato', 8, 'First Fruit Set', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® 18.6.14', 20),
|
|
|
+ ('Tomato', 4, 'V2', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Tomato', 9, 'FF3', 'December', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Tomato', 11, 'Fill and Flowering', 'January', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Tomato', 13, 'Ripening and Fruit Fill', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Tomato', 6, 'Onset of Flowering', 'November', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Tomato', 10, 'Beginning of First Fruit Fill', 'January', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Tomato', 2, 'Emergence', 'October', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Tomato', 6, 'Onset of Flowering', 'November', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Tomato', 10, 'Beginning of First Fruit Fill', 'January', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Tomato', 12, 'Fill and Flowering', 'January', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Tomato', 14, 'Ripening and Fruit Fill', 'February', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Tomato', 15, 'Ripening and Fruit Fill', 'February', 'fertigation', 'Fertigation', 'K-Max', 40),
|
|
|
+ ('Wheat', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Precede', 0.4),
|
|
|
+ ('Wheat', 1, 'Seedcoat', 'February', 'seed', 'Seedcoat', 'Mycro-Tec SP®', 0.1),
|
|
|
+ ('Wheat', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ReLeaf', 3),
|
|
|
+ ('Wheat', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'ToNik', 10),
|
|
|
+ ('Wheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'ToNik', 50),
|
|
|
+ ('Wheat', 4, 'First Foliar With Herbicide', 'May', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Wheat', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Wheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'Magnify', 0.2),
|
|
|
+ ('Wheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'Agri-Vive® RF', 20),
|
|
|
+ ('Wheat', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'N-Hance', 3),
|
|
|
+ ('Wheat', 8, '2nd Foliar', 'July', 'foliar', 'Foliar', 'N-Hance', 1),
|
|
|
+ ('Wheat', 10, 'Fallow Knock Down', 'December', 'foliar', 'Foliar', 'Amplify', 0.2),
|
|
|
+ ('Wheat', 9, 'Flowering Foliar Spray', 'September', 'foliar', 'Foliar', 'Frost-Ex®', 5),
|
|
|
+ ('Wheat', 6, '1st Foliar', 'June', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Wheat', 9, 'Flowering Foliar Spray', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Wheat', 2, 'Sowing', 'March', 'granular', 'Granular', 'Pearl Array', 100),
|
|
|
+ ('Wheat', 2, 'Sowing', 'March', 'granular', 'Granular', 'Opti-Trace® Zinc', 0.4),
|
|
|
+ ('Wheat', 5, 'Granule Spread', 'June', 'granular', 'Granular', 'Pearl Surge', 80),
|
|
|
+ ('Winegrape', 1, 'Dry Spread', 'July', 'ground', 'Spread', 'Dry Prescription Blend', 500),
|
|
|
+ ('Winegrape', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Start®', 5),
|
|
|
+ ('Winegrape', 0, 'Soil Bio Primer', 'June', 'primer', 'Soil Primer', 'Mycro-Feast®', 2.5),
|
|
|
+ ('Winegrape', 5, 'Flowering - EL 23', 'September', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Winegrape', 8, 'Berries Pea Sized - EL 31', 'October', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Winegrape', 10, 'Bunch Closure - EL 33', 'November', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Winegrape', 11, 'Veraison - EL 35', 'December', 'foliar', 'Foliar', 'Power-Cal®', 5),
|
|
|
+ ('Winegrape', 10, 'Bunch Closure - EL 33', 'November', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Winegrape', 11, 'Veraison - EL 35', 'December', 'foliar', 'Foliar', 'Agri-Vive® 0.0.30', 5),
|
|
|
+ ('Winegrape', 3, 'Shoots 10cm - EL 12', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 1),
|
|
|
+ ('Winegrape', 4, 'Pre Flower - EL 17', 'August', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 1),
|
|
|
+ ('Winegrape', 5, 'Flowering - EL 23', 'September', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Winegrape', 3, 'Shoots 10cm - EL 12', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Winegrape', 4, 'Pre Flower - EL 17', 'August', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Winegrape', 5, 'Flowering - EL 23', 'September', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Winegrape', 8, 'Berries Pea Sized - EL 31', 'October', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Winegrape', 10, 'Bunch Closure - EL 33', 'November', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Winegrape', 11, 'Veraison - EL 35', 'December', 'foliar', 'Foliar', 'Bio-Sea® FKF', 2),
|
|
|
+ ('Winegrape', 3, 'Shoots 10cm - EL 12', 'August', 'foliar', 'Foliar', 'Agri-Vive® RF', 5),
|
|
|
+ ('Winegrape', 4, 'Pre Flower - EL 17', 'August', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Winegrape', 8, 'Berries Pea Sized - EL 31', 'October', 'foliar', 'Foliar', 'Agri-Vive® RF', 10),
|
|
|
+ ('Winegrape', 10, 'Bunch Closure - EL 33', 'November', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Winegrape', 11, 'Veraison - EL 35', 'December', 'foliar', 'Foliar', 'Opti-Trace® Bio-Check', 2),
|
|
|
+ ('Winegrape', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Agri-Vive® Post Harvest Boost', 10),
|
|
|
+ ('Winegrape', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Power-N®', 10),
|
|
|
+ ('Winegrape', 13, 'Post-Harvest 1', 'April', 'foliar', 'Foliar', 'Opti-Trace® Copper', 0.3),
|
|
|
+ ('Winegrape', 8, 'Berries Pea Sized - EL 31', 'October', 'foliar', 'Foliar', 'Opti-Mag', 5),
|
|
|
+ ('Winegrape', 14, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Mag', 4),
|
|
|
+ ('Winegrape', 14, 'Scenescence', 'May', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 10),
|
|
|
+ ('Winegrape', 14, 'Scenescence', 'May', 'foliar', 'Foliar', 'ToNik', 30),
|
|
|
+ ('Winegrape', 2, 'Wooly Bud - EL 3', 'August', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 50),
|
|
|
+ ('Winegrape', 2, 'Wooly Bud - EL 3', 'August', 'fertigation', 'Fertigation', 'Mycro-Feast®', 5),
|
|
|
+ ('Winegrape', 4, 'Pre Flower - EL 17', 'August', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Winegrape', 8, 'Berries Pea Sized - EL 31', 'October', 'fertigation', 'Fertigation', 'Opti-Cal®', 20),
|
|
|
+ ('Winegrape', 3, 'Shoots 10cm - EL 12', 'August', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 20),
|
|
|
+ ('Winegrape', 7, 'Fruit Set - EL 27', 'October', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 25),
|
|
|
+ ('Winegrape', 9, 'Pre Bunch Closure - EL 32', 'November', 'fertigation', 'Fertigation', 'Agri-Vive® RF', 25),
|
|
|
+ ('Winegrape', 5, 'Flowering - EL 23', 'September', 'fertigation', 'Fertigation', 'Opti-Trace® MAX', 3),
|
|
|
+ ('Winegrape', 10, 'Bunch Closure - EL 33', 'November', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Winegrape', 11, 'Veraison - EL 35', 'December', 'fertigation', 'Fertigation', 'K-Max', 20),
|
|
|
+ ('Winegrape', 6, '80% Caps off - EL 25', 'September', 'fertigation', 'Fertigation', 'Opti-Mag', 20),
|
|
|
+ ('Winegrape', 13, 'Post-Harvest 1', 'April', 'fertigation', 'Fertigation', 'Nutri-Core® Multi N', 40),
|
|
|
+ ('Adzuki Beans', 0, 'Soil Preparation', 'November', 'ground', 'Spread', 'Dry Prescription Blend', 1000),
|
|
|
+ ('Adzuki Beans', 1, 'Seedcoat', 'December', 'seed', 'Seedcoat', 'Precede', 0.4),
|
|
|
+ ('Adzuki Beans', 1, 'Seedcoat', 'December', 'seed', 'Seedcoat', 'Mycro-Tec SP®', 0.1),
|
|
|
+ ('Adzuki Beans', 1, 'Seedcoat', 'December', 'seed', 'Seedcoat', 'Mycro-Tec VAM®', 0.01),
|
|
|
+ ('Adzuki Beans', 3, '2-4 Leaf', 'December', 'foliar', 'Foliar', 'ReLeaf', 2),
|
|
|
+ ('Adzuki Beans', 4, '8-10 Leaf', 'January', 'foliar', 'Foliar', 'ReLeaf', 2),
|
|
|
+ ('Adzuki Beans', 4, '8-10 Leaf', 'January', 'foliar', 'Foliar', 'Opti-Trace® Zinc', 0.2),
|
|
|
+ ('Adzuki Beans', 4, '8-10 Leaf', 'January', 'foliar', 'Foliar', 'Opti-Trace® Molybdenum', 0.2),
|
|
|
+ ('Adzuki Beans', 5, 'Flowering', 'February', 'foliar', 'Foliar', 'Power-Cal®', 7),
|
|
|
+ ('Adzuki Beans', 5, 'Flowering', 'February', 'foliar', 'Foliar', 'Opti-Trace® Bud Max', 2),
|
|
|
+ ('Adzuki Beans', 2, 'Sowing', 'December', 'fertigation', 'Fertigation', 'Nutri-Core Soil Activator', 20),
|
|
|
+ ('Adzuki Beans', 2, 'Sowing', 'December', 'fertigation', 'Fertigation', 'Opti-Trace® Zinc', 2);
|
|
|
+
|
|
|
+-- ============================================================
|
|
|
+-- Quick-check queries
|
|
|
+-- ============================================================
|
|
|
+
|
|
|
+-- Row count per crop
|
|
|
+-- SELECT crop_name, COUNT(*) AS applications FROM playbook_applications GROUP BY crop_name ORDER BY crop_name;
|
|
|
+
|
|
|
+-- All foliar applications for Cherry
|
|
|
+-- SELECT stage_index, stage_label, stage_month, product_name, rate
|
|
|
+-- FROM playbook_applications
|
|
|
+-- WHERE crop_name = 'Cherry' AND product_type = 'foliar'
|
|
|
+-- ORDER BY stage_index;
|
|
|
+
|
|
|
+-- All crops that use a given product
|
|
|
+-- SELECT DISTINCT crop_name FROM playbook_applications WHERE product_name = 'Power-Cal®' ORDER BY crop_name;
|