From 1b1236bfb2cfabb61f596668aa090d40e065eb8e Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Mon, 13 Apr 2026 18:29:49 -0600 Subject: [PATCH] seed normalization --- .../migration/B6__consolidated_baseline.sql | 2158 +++++++++++++++++ .../db/migration/V7__normalize_seed_data.sql | 487 ++++ .../dev/final-target/final_target_schema.sql | 5 + .../dev/final-target/final_target_seed.sql | 412 ++-- 4 files changed, 2856 insertions(+), 206 deletions(-) create mode 100644 backend/src/main/resources/db/migration/B6__consolidated_baseline.sql create mode 100644 backend/src/main/resources/db/migration/V7__normalize_seed_data.sql diff --git a/backend/src/main/resources/db/migration/B6__consolidated_baseline.sql b/backend/src/main/resources/db/migration/B6__consolidated_baseline.sql new file mode 100644 index 00000000..33542eac --- /dev/null +++ b/backend/src/main/resources/db/migration/B6__consolidated_baseline.sql @@ -0,0 +1,2158 @@ +CREATE TABLE IF NOT EXISTS storeLocation ( + storeId BIGINT AUTO_INCREMENT PRIMARY KEY, + storeName VARCHAR(100) NOT NULL, + address VARCHAR(255) NOT NULL, + phone VARCHAR(20) NOT NULL, + email VARCHAR(100) NOT NULL, + imageUrl VARCHAR(255) NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP +); + +CREATE TABLE IF NOT EXISTS users ( + id BIGINT AUTO_INCREMENT PRIMARY KEY, + username VARCHAR(50) NULL UNIQUE, + password VARCHAR(255) NULL, + email VARCHAR(100) NULL UNIQUE, + firstName VARCHAR(50) NOT NULL, + lastName VARCHAR(50) NOT NULL, + fullName VARCHAR(100) NULL, + phone VARCHAR(20) NULL, + avatarUrl VARCHAR(255) NULL, + role VARCHAR(20) NOT NULL, + staffRole VARCHAR(50) NULL, + primaryStoreId BIGINT NULL, + loyaltyPoints INT NOT NULL DEFAULT 0, + active BOOLEAN NOT NULL DEFAULT TRUE, + tokenVersion INT NOT NULL DEFAULT 0, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_users_primary_store FOREIGN KEY (primaryStoreId) REFERENCES storeLocation(storeId) ON DELETE SET NULL +); + +CREATE TABLE IF NOT EXISTS supplier ( + supId BIGINT AUTO_INCREMENT PRIMARY KEY, + supCompany VARCHAR(100) NOT NULL, + supContactFirstName VARCHAR(50) NOT NULL, + supContactLastName VARCHAR(50) NOT NULL, + supEmail VARCHAR(100) NOT NULL, + supPhone VARCHAR(20) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP +); + +CREATE TABLE IF NOT EXISTS category ( + categoryId BIGINT AUTO_INCREMENT PRIMARY KEY, + categoryName VARCHAR(100) NOT NULL, + categoryType VARCHAR(50) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT uq_category_name_type UNIQUE (categoryName, categoryType) +); + +CREATE TABLE IF NOT EXISTS service ( + serviceId BIGINT AUTO_INCREMENT PRIMARY KEY, + serviceName VARCHAR(100) NOT NULL, + serviceDesc TEXT NULL, + serviceDuration INT NOT NULL, + servicePrice DECIMAL(10, 2) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP +); + +CREATE TABLE IF NOT EXISTS service_species ( + serviceId BIGINT NOT NULL, + species VARCHAR(50) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (serviceId, species), + CONSTRAINT fk_service_species_service FOREIGN KEY (serviceId) REFERENCES service(serviceId) ON DELETE CASCADE +); + +CREATE TABLE IF NOT EXISTS product ( + prodId BIGINT AUTO_INCREMENT PRIMARY KEY, + prodName VARCHAR(100) NOT NULL, + prodPrice DECIMAL(10, 2) NOT NULL, + categoryId BIGINT NOT NULL, + prodDesc TEXT NULL, + imageUrl VARCHAR(255) NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_product_category FOREIGN KEY (categoryId) REFERENCES category(categoryId) +); + +CREATE TABLE IF NOT EXISTS inventory ( + inventoryId BIGINT AUTO_INCREMENT PRIMARY KEY, + storeId BIGINT NOT NULL, + prodId BIGINT NOT NULL, + quantity INT NOT NULL DEFAULT 0, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT uq_inventory_store_product UNIQUE (storeId, prodId), + CONSTRAINT fk_inventory_store FOREIGN KEY (storeId) REFERENCES storeLocation(storeId), + CONSTRAINT fk_inventory_product FOREIGN KEY (prodId) REFERENCES product(prodId) +); + +CREATE TABLE IF NOT EXISTS productSupplier ( + supId BIGINT NOT NULL, + prodId BIGINT NOT NULL, + cost DECIMAL(10, 2) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (supId, prodId), + CONSTRAINT fk_product_supplier_supplier FOREIGN KEY (supId) REFERENCES supplier(supId), + CONSTRAINT fk_product_supplier_product FOREIGN KEY (prodId) REFERENCES product(prodId) +); + +CREATE TABLE IF NOT EXISTS purchaseOrder ( + purchaseOrderId BIGINT AUTO_INCREMENT PRIMARY KEY, + supId BIGINT NOT NULL, + storeId BIGINT NOT NULL, + orderDate DATE NOT NULL, + status VARCHAR(50) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_purchase_order_supplier FOREIGN KEY (supId) REFERENCES supplier(supId), + CONSTRAINT fk_purchase_order_store FOREIGN KEY (storeId) REFERENCES storeLocation(storeId) +); + +CREATE TABLE IF NOT EXISTS coupon ( + couponId BIGINT AUTO_INCREMENT PRIMARY KEY, + couponCode VARCHAR(50) NOT NULL, + discountType VARCHAR(20) NOT NULL, + discountValue DECIMAL(10, 2) NOT NULL, + minOrderAmount DECIMAL(10, 2) NULL, + active BOOLEAN NOT NULL DEFAULT TRUE, + startsAt DATETIME NULL, + endsAt DATETIME NULL, + usageLimit INT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT uq_coupon_code UNIQUE (couponCode) +); + +CREATE TABLE IF NOT EXISTS pet ( + petId BIGINT AUTO_INCREMENT PRIMARY KEY, + petName VARCHAR(50) NOT NULL, + petSpecies VARCHAR(50) NOT NULL, + petBreed VARCHAR(50) NULL, + petAge INT NULL, + petStatus VARCHAR(20) NOT NULL, + petPrice DECIMAL(10, 2) NULL, + imageUrl VARCHAR(255) NULL, + ownerUserId BIGINT NULL, + storeId BIGINT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_pet_owner_user FOREIGN KEY (ownerUserId) REFERENCES users(id) ON DELETE SET NULL, + CONSTRAINT fk_pet_store FOREIGN KEY (storeId) REFERENCES storeLocation(storeId) ON DELETE SET NULL +); + +CREATE TABLE IF NOT EXISTS appointment ( + appointmentId BIGINT AUTO_INCREMENT PRIMARY KEY, + serviceId BIGINT NOT NULL, + petId BIGINT NOT NULL, + customerId BIGINT NOT NULL, + storeId BIGINT NOT NULL, + employeeId BIGINT NOT NULL, + appointmentDate DATE NOT NULL, + appointmentTime TIME NOT NULL, + appointmentStatus VARCHAR(20) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_appointment_service FOREIGN KEY (serviceId) REFERENCES service(serviceId), + CONSTRAINT fk_appointment_pet FOREIGN KEY (petId) REFERENCES pet(petId), + CONSTRAINT fk_appointment_customer FOREIGN KEY (customerId) REFERENCES users(id), + CONSTRAINT fk_appointment_store FOREIGN KEY (storeId) REFERENCES storeLocation(storeId), + CONSTRAINT fk_appointment_employee FOREIGN KEY (employeeId) REFERENCES users(id) +); + +CREATE TABLE IF NOT EXISTS adoption ( + adoptionId BIGINT AUTO_INCREMENT PRIMARY KEY, + petId BIGINT NOT NULL, + customerId BIGINT NOT NULL, + employeeId BIGINT NOT NULL, + sourceStoreId BIGINT NOT NULL, + adoptionDate DATE NOT NULL, + adoptionStatus VARCHAR(20) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_adoption_pet FOREIGN KEY (petId) REFERENCES pet(petId), + CONSTRAINT fk_adoption_customer FOREIGN KEY (customerId) REFERENCES users(id), + CONSTRAINT fk_adoption_employee FOREIGN KEY (employeeId) REFERENCES users(id), + CONSTRAINT fk_adoption_source_store FOREIGN KEY (sourceStoreId) REFERENCES storeLocation(storeId) +); + +CREATE TABLE IF NOT EXISTS cart ( + cartId BIGINT AUTO_INCREMENT PRIMARY KEY, + userId BIGINT NOT NULL, + storeId BIGINT NULL, + couponId BIGINT NULL, + cartStatus VARCHAR(20) NOT NULL DEFAULT 'ACTIVE', + subtotalAmount DECIMAL(10, 2) NOT NULL DEFAULT 0.00, + discountAmount DECIMAL(10, 2) NOT NULL DEFAULT 0.00, + totalAmount DECIMAL(10, 2) NOT NULL DEFAULT 0.00, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_cart_user FOREIGN KEY (userId) REFERENCES users(id), + CONSTRAINT fk_cart_store FOREIGN KEY (storeId) REFERENCES storeLocation(storeId) ON DELETE SET NULL, + CONSTRAINT fk_cart_coupon FOREIGN KEY (couponId) REFERENCES coupon(couponId) ON DELETE SET NULL +); + +CREATE TABLE IF NOT EXISTS cart_item ( + cartItemId BIGINT AUTO_INCREMENT PRIMARY KEY, + cartId BIGINT NOT NULL, + prodId BIGINT NOT NULL, + quantity INT NOT NULL, + unitPrice DECIMAL(10, 2) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_cart_item_cart FOREIGN KEY (cartId) REFERENCES cart(cartId) ON DELETE CASCADE, + CONSTRAINT fk_cart_item_product FOREIGN KEY (prodId) REFERENCES product(prodId) +); + +CREATE TABLE IF NOT EXISTS sale ( + saleId BIGINT AUTO_INCREMENT PRIMARY KEY, + saleDate DATETIME NOT NULL, + totalAmount DECIMAL(10, 2) NOT NULL, + paymentMethod VARCHAR(50) NOT NULL, + employeeId BIGINT NOT NULL, + storeId BIGINT NOT NULL, + customerId BIGINT NULL, + isRefund BOOLEAN NOT NULL DEFAULT FALSE, + originalSaleId BIGINT NULL, + channel VARCHAR(20) NOT NULL DEFAULT 'IN_STORE', + cartId BIGINT NULL, + couponId BIGINT NULL, + subtotalAmount DECIMAL(10, 2) NULL, + couponDiscountAmount DECIMAL(10, 2) NOT NULL DEFAULT 0.00, + employeeDiscountAmount DECIMAL(10, 2) NOT NULL DEFAULT 0.00, + pointsEarned INT NOT NULL DEFAULT 0, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_sale_employee FOREIGN KEY (employeeId) REFERENCES users(id), + CONSTRAINT fk_sale_store FOREIGN KEY (storeId) REFERENCES storeLocation(storeId), + CONSTRAINT fk_sale_customer FOREIGN KEY (customerId) REFERENCES users(id) ON DELETE SET NULL, + CONSTRAINT fk_sale_original_sale FOREIGN KEY (originalSaleId) REFERENCES sale(saleId), + CONSTRAINT fk_sale_cart FOREIGN KEY (cartId) REFERENCES cart(cartId) ON DELETE SET NULL, + CONSTRAINT fk_sale_coupon FOREIGN KEY (couponId) REFERENCES coupon(couponId) ON DELETE SET NULL +); + +CREATE TABLE IF NOT EXISTS saleItem ( + saleItemId BIGINT AUTO_INCREMENT PRIMARY KEY, + saleId BIGINT NOT NULL, + prodId BIGINT NOT NULL, + quantity INT NOT NULL, + unitPrice DECIMAL(10, 2) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_sale_item_sale FOREIGN KEY (saleId) REFERENCES sale(saleId) ON DELETE CASCADE, + CONSTRAINT fk_sale_item_product FOREIGN KEY (prodId) REFERENCES product(prodId) +); + +CREATE TABLE IF NOT EXISTS refund ( + id BIGINT AUTO_INCREMENT PRIMARY KEY, + saleId BIGINT NOT NULL, + customerId BIGINT NOT NULL, + amount DECIMAL(10, 2) NOT NULL, + reason VARCHAR(500) NOT NULL, + status VARCHAR(20) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_refund_sale FOREIGN KEY (saleId) REFERENCES sale(saleId), + CONSTRAINT fk_refund_customer FOREIGN KEY (customerId) REFERENCES users(id) +); + +CREATE TABLE IF NOT EXISTS refund_item ( + id BIGINT AUTO_INCREMENT PRIMARY KEY, + refund_id BIGINT NOT NULL, + prod_id BIGINT NOT NULL, + quantity INT NOT NULL, + unit_price DECIMAL(10, 2) NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_refund_item_refund FOREIGN KEY (refund_id) REFERENCES refund(id) ON DELETE CASCADE, + CONSTRAINT fk_refund_item_product FOREIGN KEY (prod_id) REFERENCES product(prodId) +); + +CREATE TABLE IF NOT EXISTS conversation ( + id BIGINT AUTO_INCREMENT PRIMARY KEY, + customerId BIGINT NOT NULL, + staffId BIGINT NULL, + status VARCHAR(20) NOT NULL DEFAULT 'OPEN', + mode VARCHAR(20) NOT NULL DEFAULT 'AUTOMATED', + humanRequestedAt TIMESTAMP NULL, + created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + CONSTRAINT fk_conversation_customer FOREIGN KEY (customerId) REFERENCES users(id), + CONSTRAINT fk_conversation_staff FOREIGN KEY (staffId) REFERENCES users(id) ON DELETE SET NULL +); + +CREATE TABLE IF NOT EXISTS message ( + id BIGINT AUTO_INCREMENT PRIMARY KEY, + conversationId BIGINT NOT NULL, + senderId BIGINT NOT NULL, + content TEXT NULL, + attachmentUrl VARCHAR(255) NULL, + attachmentName VARCHAR(255) NULL, + attachmentMimeType VARCHAR(100) NULL, + attachmentSizeBytes BIGINT NULL, + timestamp TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + isRead BOOLEAN NOT NULL DEFAULT FALSE, + CONSTRAINT fk_message_conversation FOREIGN KEY (conversationId) REFERENCES conversation(id) ON DELETE CASCADE, + CONSTRAINT fk_message_sender FOREIGN KEY (senderId) REFERENCES users(id) +); + +CREATE TABLE IF NOT EXISTS activityLog ( + logId BIGINT AUTO_INCREMENT PRIMARY KEY, + userId BIGINT NOT NULL, + storeId BIGINT NULL, + usernameSnapshot VARCHAR(50) NULL, + fullNameSnapshot VARCHAR(100) NULL, + roleSnapshot VARCHAR(20) NULL, + storeNameSnapshot VARCHAR(100) NULL, + activity TEXT NOT NULL, + logTimestamp TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + CONSTRAINT fk_activity_log_user FOREIGN KEY (userId) REFERENCES users(id), + CONSTRAINT fk_activity_log_store FOREIGN KEY (storeId) REFERENCES storeLocation(storeId) ON DELETE SET NULL +); + +CREATE INDEX idx_users_primary_store ON users(primaryStoreId); +CREATE INDEX idx_users_role ON users(role); +CREATE INDEX idx_users_name ON users(lastName, firstName); +CREATE INDEX idx_service_species_species ON service_species(species); +CREATE INDEX idx_inventory_store ON inventory(storeId); +CREATE INDEX idx_inventory_product ON inventory(prodId); +CREATE INDEX idx_purchase_order_store ON purchaseOrder(storeId); +CREATE INDEX idx_pet_owner_user ON pet(ownerUserId); +CREATE INDEX idx_pet_store ON pet(storeId); +CREATE INDEX idx_pet_species ON pet(petSpecies); +CREATE INDEX idx_pet_name ON pet(petName); +CREATE INDEX idx_appointment_store ON appointment(storeId); +CREATE INDEX idx_appointment_employee ON appointment(employeeId); +CREATE INDEX idx_appointment_customer ON appointment(customerId); +CREATE INDEX idx_appointment_pet ON appointment(petId); +CREATE INDEX idx_appointment_date_status ON appointment(appointmentDate, appointmentStatus); +CREATE INDEX idx_adoption_store ON adoption(sourceStoreId); +CREATE INDEX idx_adoption_employee ON adoption(employeeId); +CREATE INDEX idx_sale_store ON sale(storeId); +CREATE INDEX idx_sale_employee ON sale(employeeId); +CREATE INDEX idx_sale_customer ON sale(customerId); +CREATE INDEX idx_sale_date ON sale(saleDate); +CREATE INDEX idx_cart_user ON cart(userId); +CREATE INDEX idx_conversation_customer ON conversation(customerId); +CREATE INDEX idx_conversation_staff ON conversation(staffId); +CREATE INDEX idx_activity_log_store ON activityLog(storeId); +CREATE INDEX idx_activity_log_timestamp_id ON activityLog(logTimestamp, logId); + +INSERT INTO storeLocation (storeId, storeName, address, phone, email, imageUrl) VALUES +(1, 'Downtown Branch', '123 Main St, Calgary, AB', '403-555-0101', 'downtown@petshop.com', 'https://images.petshop.local/stores/downtown.webp'), +(2, 'North Branch', '456 North Ave, Calgary, AB', '403-555-0102', 'north@petshop.com', 'https://images.petshop.local/stores/north.webp'), +(3, 'West Side Store', '789 West Blvd, Calgary, AB', '403-555-0103', 'westside@petshop.com', 'https://images.petshop.local/stores/west.webp'); + +INSERT INTO users (id, username, password, email, firstName, lastName, fullName, phone, avatarUrl, role, staffRole, primaryStoreId, loyaltyPoints, active, tokenVersion) VALUES +(1, 'admin', '$2y$10$ok/BmOn/pyyamTeNmUDiB.OfLCduQlZSAaRLlupM/cZb7ZhiBriVe', 'admin@petshop.com', 'Admin', 'User', 'Admin User', '000-000-1000', 'https://images.petshop.local/users/001.webp', 'ADMIN', 'ADMINISTRATOR', 1, 0, 1, 0), +(2, 'morgan.lee', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'morgan.lee@petshop.com', 'Morgan', 'Lee', 'Morgan Lee', '403-700-0002', 'https://images.petshop.local/users/002.webp', 'ADMIN', 'OPERATIONS_ADMIN', 2, 0, 1, 0), +(3, 'staff', '$2y$10$23mqbLolo609T/.PC4KfiuY.9HqYEgA8LrJ/fccZ7CmK0/OIsPrfq', 'staff@petshop.com', 'Staff', 'User', 'Staff User', '000-000-1001', 'https://images.petshop.local/users/003.webp', 'STAFF', 'STORE_MANAGER', 1, 0, 1, 0), +(4, 'sara.smith', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sara.smith@petshop.com', 'Sara', 'Smith', 'Sara Smith', '403-710-0004', 'https://images.petshop.local/users/004.webp', 'STAFF', 'SALES_ASSOCIATE', 1, 0, 1, 0), +(5, 'david.brown', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'david.brown@petshop.com', 'David', 'Brown', 'David Brown', '403-710-0005', 'https://images.petshop.local/users/005.webp', 'STAFF', 'VETERINARY_TECH', 1, 0, 1, 0), +(6, 'priya.patel', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'priya.patel@petshop.com', 'Priya', 'Patel', 'Priya Patel', '403-710-0006', 'https://images.petshop.local/users/006.webp', 'STAFF', 'GROOMER', 1, 0, 1, 0), +(7, 'michael.johnson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'michael.johnson@petshop.com', 'Michael', 'Johnson', 'Michael Johnson', '403-710-0007', 'https://images.petshop.local/users/007.webp', 'STAFF', 'STORE_MANAGER', 2, 0, 1, 0), +(8, 'emma.davis', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'emma.davis@petshop.com', 'Emma', 'Davis', 'Emma Davis', '403-710-0008', 'https://images.petshop.local/users/008.webp', 'STAFF', 'SALES_ASSOCIATE', 2, 0, 1, 0), +(9, 'lucas.turner', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'lucas.turner@petshop.com', 'Lucas', 'Turner', 'Lucas Turner', '403-710-0009', 'https://images.petshop.local/users/009.webp', 'STAFF', 'VETERINARY_TECH', 2, 0, 1, 0), +(10, 'nina.green', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'nina.green@petshop.com', 'Nina', 'Green', 'Nina Green', '403-710-0010', 'https://images.petshop.local/users/010.webp', 'STAFF', 'GROOMER', 2, 0, 1, 0), +(11, 'lisa.williams', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'lisa.williams@petshop.com', 'Lisa', 'Williams', 'Lisa Williams', '403-710-0011', 'https://images.petshop.local/users/011.webp', 'STAFF', 'STORE_MANAGER', 3, 0, 1, 0), +(12, 'daniel.moore', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'daniel.moore@petshop.com', 'Daniel', 'Moore', 'Daniel Moore', '403-710-0012', 'https://images.petshop.local/users/012.webp', 'STAFF', 'SALES_ASSOCIATE', 3, 0, 1, 0), +(13, 'chloe.martin', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'chloe.martin@petshop.com', 'Chloe', 'Martin', 'Chloe Martin', '403-710-0013', 'https://images.petshop.local/users/013.webp', 'STAFF', 'VETERINARY_TECH', 3, 0, 1, 0), +(14, 'owen.baker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'owen.baker@petshop.com', 'Owen', 'Baker', 'Owen Baker', '403-710-0014', 'https://images.petshop.local/users/014.webp', 'STAFF', 'GROOMER', 3, 0, 1, 0), +(15, 'customer', '$2y$10$fgIlTHDYUOzvbczwdhQP7..YuAHr2cGODb9OBQJqole3AkiY4CGUq', 'customer@petshop.com', 'Test', 'Customer', 'Test Customer', '000-000-1002', 'https://images.petshop.local/users/015.webp', 'CUSTOMER', 'CUSTOMER', 1, 0, 1, 0), +(16, 'maya.brown', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'maya.brown@gmail.com', 'Maya', 'Brown', 'Maya Brown', '403-730-0016', 'https://images.petshop.local/users/016.webp', 'CUSTOMER', 'CUSTOMER', 2, 12, 1, 0), +(17, 'noah.clark', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'noah.clark@gmail.com', 'Noah', 'Clark', 'Noah Clark', '403-730-0017', 'https://images.petshop.local/users/017.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), +(18, 'avery.wilson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'avery.wilson@gmail.com', 'Avery', 'Wilson', 'Avery Wilson', '403-730-0018', 'https://images.petshop.local/users/018.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(19, 'leah.martinez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'leah.martinez@gmail.com', 'Leah', 'Martinez', 'Leah Martinez', '403-730-0019', 'https://images.petshop.local/users/019.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(20, 'julian.anderson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'julian.anderson@gmail.com', 'Julian', 'Anderson', 'Julian Anderson', '403-730-0020', 'https://images.petshop.local/users/020.webp', 'CUSTOMER', 'CUSTOMER', 3, 12, 1, 0), +(21, 'zoe.taylor', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'zoe.taylor@gmail.com', 'Zoe', 'Taylor', 'Zoe Taylor', '403-730-0021', 'https://images.petshop.local/users/021.webp', 'CUSTOMER', 'CUSTOMER', 1, 11, 1, 0), +(22, 'ethan.parker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ethan.parker@gmail.com', 'Ethan', 'Parker', 'Ethan Parker', '403-730-0022', 'https://images.petshop.local/users/022.webp', 'CUSTOMER', 'CUSTOMER', 2, 16, 1, 0), +(23, 'ruby.evans', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ruby.evans@gmail.com', 'Ruby', 'Evans', 'Ruby Evans', '403-730-0023', 'https://images.petshop.local/users/023.webp', 'CUSTOMER', 'CUSTOMER', 3, 36, 1, 0), +(24, 'caleb.scott', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'caleb.scott@gmail.com', 'Caleb', 'Scott', 'Caleb Scott', '403-730-0024', 'https://images.petshop.local/users/024.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(25, 'ivy.adams', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ivy.adams@gmail.com', 'Ivy', 'Adams', 'Ivy Adams', '403-730-0025', 'https://images.petshop.local/users/025.webp', 'CUSTOMER', 'CUSTOMER', 2, 8, 1, 0), +(26, 'isaac.baker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'isaac.baker@gmail.com', 'Isaac', 'Baker', 'Isaac Baker', '403-730-0026', 'https://images.petshop.local/users/026.webp', 'CUSTOMER', 'CUSTOMER', 3, 29, 1, 0), +(27, 'hannah.hall', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'hannah.hall@gmail.com', 'Hannah', 'Hall', 'Hannah Hall', '403-730-0027', 'https://images.petshop.local/users/027.webp', 'CUSTOMER', 'CUSTOMER', 1, 3, 1, 0), +(28, 'mason.rivera', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'mason.rivera@gmail.com', 'Mason', 'Rivera', 'Mason Rivera', '403-730-0028', 'https://images.petshop.local/users/028.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), +(29, 'aria.mitchell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'aria.mitchell@gmail.com', 'Aria', 'Mitchell', 'Aria Mitchell', '403-730-0029', 'https://images.petshop.local/users/029.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), +(30, 'wyatt.collins', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'wyatt.collins@gmail.com', 'Wyatt', 'Collins', 'Wyatt Collins', '403-730-0030', 'https://images.petshop.local/users/030.webp', 'CUSTOMER', 'CUSTOMER', 1, 16, 1, 0), +(31, 'elena.morris', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'elena.morris@gmail.com', 'Elena', 'Morris', 'Elena Morris', '403-730-0031', 'https://images.petshop.local/users/031.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(32, 'leo.cook', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'leo.cook@gmail.com', 'Leo', 'Cook', 'Leo Cook', '403-730-0032', 'https://images.petshop.local/users/032.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), +(33, 'grace.bell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'grace.bell@gmail.com', 'Grace', 'Bell', 'Grace Bell', '403-730-0033', 'https://images.petshop.local/users/033.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(34, 'hudson.reed', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'hudson.reed@gmail.com', 'Hudson', 'Reed', 'Hudson Reed', '403-730-0034', 'https://images.petshop.local/users/034.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(35, 'claire.murphy', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'claire.murphy@gmail.com', 'Claire', 'Murphy', 'Claire Murphy', '403-730-0035', 'https://images.petshop.local/users/035.webp', 'CUSTOMER', 'CUSTOMER', 3, 31, 1, 0), +(36, 'omar.bailey', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'omar.bailey@gmail.com', 'Omar', 'Bailey', 'Omar Bailey', '403-730-0036', 'https://images.petshop.local/users/036.webp', 'CUSTOMER', 'CUSTOMER', 1, 6, 1, 0), +(37, 'naomi.cooper', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'naomi.cooper@gmail.com', 'Naomi', 'Cooper', 'Naomi Cooper', '403-730-0037', 'https://images.petshop.local/users/037.webp', 'CUSTOMER', 'CUSTOMER', 2, 4, 1, 0), +(38, 'jasper.richardson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'jasper.richardson@gmail.com', 'Jasper', 'Richardson', 'Jasper Richardson', '403-730-0038', 'https://images.petshop.local/users/038.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), +(39, 'sofia.cox', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sofia.cox@gmail.com', 'Sofia', 'Cox', 'Sofia Cox', '403-730-0039', 'https://images.petshop.local/users/039.webp', 'CUSTOMER', 'CUSTOMER', 1, 4, 1, 0), +(40, 'miles.howard', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'miles.howard@gmail.com', 'Miles', 'Howard', 'Miles Howard', '403-730-0040', 'https://images.petshop.local/users/040.webp', 'CUSTOMER', 'CUSTOMER', 2, 12, 1, 0), +(41, 'audrey.ward', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'audrey.ward@gmail.com', 'Audrey', 'Ward', 'Audrey Ward', '403-730-0041', 'https://images.petshop.local/users/041.webp', 'CUSTOMER', 'CUSTOMER', 3, 18, 1, 0), +(42, 'nathan.torres', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'nathan.torres@gmail.com', 'Nathan', 'Torres', 'Nathan Torres', '403-730-0042', 'https://images.petshop.local/users/042.webp', 'CUSTOMER', 'CUSTOMER', 1, 10, 1, 0), +(43, 'jade.peterson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'jade.peterson@gmail.com', 'Jade', 'Peterson', 'Jade Peterson', '403-730-0043', 'https://images.petshop.local/users/043.webp', 'CUSTOMER', 'CUSTOMER', 2, 6, 1, 0), +(44, 'rowan.gray', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'rowan.gray@gmail.com', 'Rowan', 'Gray', 'Rowan Gray', '403-730-0044', 'https://images.petshop.local/users/044.webp', 'CUSTOMER', 'CUSTOMER', 3, 11, 1, 0), +(45, 'lila.ramirez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'lila.ramirez@gmail.com', 'Lila', 'Ramirez', 'Lila Ramirez', '403-730-0045', 'https://images.petshop.local/users/045.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(46, 'eli.james', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'eli.james@gmail.com', 'Eli', 'James', 'Eli James', '403-730-0046', 'https://images.petshop.local/users/046.webp', 'CUSTOMER', 'CUSTOMER', 2, 28, 1, 0), +(47, 'violet.watson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'violet.watson@gmail.com', 'Violet', 'Watson', 'Violet Watson', '403-730-0047', 'https://images.petshop.local/users/047.webp', 'CUSTOMER', 'CUSTOMER', 3, 8, 1, 0), +(48, 'gavin.brooks', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'gavin.brooks@gmail.com', 'Gavin', 'Brooks', 'Gavin Brooks', '403-730-0048', 'https://images.petshop.local/users/048.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(49, 'stella.kelly', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'stella.kelly@gmail.com', 'Stella', 'Kelly', 'Stella Kelly', '403-730-0049', 'https://images.petshop.local/users/049.webp', 'CUSTOMER', 'CUSTOMER', 2, 16, 1, 0), +(50, 'adrian.sanders', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'adrian.sanders@gmail.com', 'Adrian', 'Sanders', 'Adrian Sanders', '403-730-0050', 'https://images.petshop.local/users/050.webp', 'CUSTOMER', 'CUSTOMER', 3, 21, 1, 0), +(51, 'hazel.price', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'hazel.price@gmail.com', 'Hazel', 'Price', 'Hazel Price', '403-730-0051', 'https://images.petshop.local/users/051.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), +(52, 'connor.bennett', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'connor.bennett@gmail.com', 'Connor', 'Bennett', 'Connor Bennett', '403-730-0052', 'https://images.petshop.local/users/052.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), +(53, 'sadie.wood', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sadie.wood@gmail.com', 'Sadie', 'Wood', 'Sadie Wood', '403-730-0053', 'https://images.petshop.local/users/053.webp', 'CUSTOMER', 'CUSTOMER', 3, 10, 1, 0), +(54, 'xavier.barnes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'xavier.barnes@gmail.com', 'Xavier', 'Barnes', 'Xavier Barnes', '403-730-0054', 'https://images.petshop.local/users/054.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(55, 'alice.ross', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alice.ross@gmail.com', 'Alice', 'Ross', 'Alice Ross', '403-730-0055', 'https://images.petshop.local/users/055.webp', 'CUSTOMER', 'CUSTOMER', 2, 7, 1, 0), +(56, 'roman.henderson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'roman.henderson@gmail.com', 'Roman', 'Henderson', 'Roman Henderson', '403-730-0056', 'https://images.petshop.local/users/056.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), +(57, 'lucy.coleman', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'lucy.coleman@gmail.com', 'Lucy', 'Coleman', 'Lucy Coleman', '403-730-0057', 'https://images.petshop.local/users/057.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(58, 'evan.jenkins', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'evan.jenkins@gmail.com', 'Evan', 'Jenkins', 'Evan Jenkins', '403-730-0058', 'https://images.petshop.local/users/058.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), +(59, 'mila.perry', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'mila.perry@gmail.com', 'Mila', 'Perry', 'Mila Perry', '403-730-0059', 'https://images.petshop.local/users/059.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), +(60, 'cole.powell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'cole.powell@gmail.com', 'Cole', 'Powell', 'Cole Powell', '403-730-0060', 'https://images.petshop.local/users/060.webp', 'CUSTOMER', 'CUSTOMER', 1, 4, 1, 0), +(61, 'nora.long', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'nora.long@gmail.com', 'Nora', 'Long', 'Nora Long', '403-730-0061', 'https://images.petshop.local/users/061.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), +(62, 'adam.patterson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'adam.patterson@gmail.com', 'Adam', 'Patterson', 'Adam Patterson', '403-730-0062', 'https://images.petshop.local/users/062.webp', 'CUSTOMER', 'CUSTOMER', 3, 26, 1, 0), +(63, 'layla.hughes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'layla.hughes@gmail.com', 'Layla', 'Hughes', 'Layla Hughes', '403-730-0063', 'https://images.petshop.local/users/063.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(64, 'blake.flores', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'blake.flores@gmail.com', 'Blake', 'Flores', 'Blake Flores', '403-730-0064', 'https://images.petshop.local/users/064.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(65, 'ellie.washington', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ellie.washington@gmail.com', 'Ellie', 'Washington', 'Ellie Washington', '403-730-0065', 'https://images.petshop.local/users/065.webp', 'CUSTOMER', 'CUSTOMER', 3, 22, 1, 0), +(66, 'ryan.butler', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ryan.butler@gmail.com', 'Ryan', 'Butler', 'Ryan Butler', '403-730-0066', 'https://images.petshop.local/users/066.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(67, 'cora.simmons', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'cora.simmons@gmail.com', 'Cora', 'Simmons', 'Cora Simmons', '403-730-0067', 'https://images.petshop.local/users/067.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(68, 'simon.foster', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'simon.foster@gmail.com', 'Simon', 'Foster', 'Simon Foster', '403-730-0068', 'https://images.petshop.local/users/068.webp', 'CUSTOMER', 'CUSTOMER', 3, 17, 1, 0), +(69, 'piper.gonzales', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'piper.gonzales@gmail.com', 'Piper', 'Gonzales', 'Piper Gonzales', '403-730-0069', 'https://images.petshop.local/users/069.webp', 'CUSTOMER', 'CUSTOMER', 1, 15, 1, 0), +(70, 'joel.bryant', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'joel.bryant@gmail.com', 'Joel', 'Bryant', 'Joel Bryant', '403-730-0070', 'https://images.petshop.local/users/070.webp', 'CUSTOMER', 'CUSTOMER', 2, 19, 1, 0), +(71, 'eva.alexander', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'eva.alexander@gmail.com', 'Eva', 'Alexander', 'Eva Alexander', '403-730-0071', 'https://images.petshop.local/users/071.webp', 'CUSTOMER', 'CUSTOMER', 3, 13, 1, 0), +(72, 'felix.russell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'felix.russell@gmail.com', 'Felix', 'Russell', 'Felix Russell', '403-730-0072', 'https://images.petshop.local/users/072.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), +(73, 'maeve.griffin', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'maeve.griffin@gmail.com', 'Maeve', 'Griffin', 'Maeve Griffin', '403-730-0073', 'https://images.petshop.local/users/073.webp', 'CUSTOMER', 'CUSTOMER', 2, 2, 1, 0), +(74, 'tristan.diaz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'tristan.diaz@gmail.com', 'Tristan', 'Diaz', 'Tristan Diaz', '403-730-0074', 'https://images.petshop.local/users/074.webp', 'CUSTOMER', 'CUSTOMER', 3, 10, 1, 0), +(75, 'ariana.hayes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ariana.hayes@gmail.com', 'Ariana', 'Hayes', 'Ariana Hayes', '403-730-0075', 'https://images.petshop.local/users/075.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), +(76, 'declan.myers', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'declan.myers@gmail.com', 'Declan', 'Myers', 'Declan Myers', '403-730-0076', 'https://images.petshop.local/users/076.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), +(77, 'brooke.ford', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'brooke.ford@gmail.com', 'Brooke', 'Ford', 'Brooke Ford', '403-730-0077', 'https://images.petshop.local/users/077.webp', 'CUSTOMER', 'CUSTOMER', 3, 13, 1, 0), +(78, 'micah.hamilton', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'micah.hamilton@gmail.com', 'Micah', 'Hamilton', 'Micah Hamilton', '403-730-0078', 'https://images.petshop.local/users/078.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(79, 'bianca.graham', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'bianca.graham@gmail.com', 'Bianca', 'Graham', 'Bianca Graham', '403-730-0079', 'https://images.petshop.local/users/079.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(80, 'jonah.sullivan', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'jonah.sullivan@gmail.com', 'Jonah', 'Sullivan', 'Jonah Sullivan', '403-730-0080', 'https://images.petshop.local/users/080.webp', 'CUSTOMER', 'CUSTOMER', 3, 12, 1, 0), +(81, 'tessa.wallace', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'tessa.wallace@gmail.com', 'Tessa', 'Wallace', 'Tessa Wallace', '403-730-0081', 'https://images.petshop.local/users/081.webp', 'CUSTOMER', 'CUSTOMER', 1, 11, 1, 0), +(82, 'damian.woods', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'damian.woods@gmail.com', 'Damian', 'Woods', 'Damian Woods', '403-730-0082', 'https://images.petshop.local/users/082.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), +(83, 'riley.cole', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'riley.cole@gmail.com', 'Riley', 'Cole', 'Riley Cole', '403-730-0083', 'https://images.petshop.local/users/083.webp', 'CUSTOMER', 'CUSTOMER', 3, 36, 1, 0), +(84, 'kieran.west', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'kieran.west@gmail.com', 'Kieran', 'West', 'Kieran West', '403-730-0084', 'https://images.petshop.local/users/084.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(85, 'sienna.jordan', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sienna.jordan@gmail.com', 'Sienna', 'Jordan', 'Sienna Jordan', '403-730-0085', 'https://images.petshop.local/users/085.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(86, 'finley.owens', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'finley.owens@gmail.com', 'Finley', 'Owens', 'Finley Owens', '403-730-0086', 'https://images.petshop.local/users/086.webp', 'CUSTOMER', 'CUSTOMER', 3, 26, 1, 0), +(87, 'maren.reynolds', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'maren.reynolds@gmail.com', 'Maren', 'Reynolds', 'Maren Reynolds', '403-730-0087', 'https://images.petshop.local/users/087.webp', 'CUSTOMER', 'CUSTOMER', 1, 3, 1, 0), +(88, 'asher.fisher', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'asher.fisher@gmail.com', 'Asher', 'Fisher', 'Asher Fisher', '403-730-0088', 'https://images.petshop.local/users/088.webp', 'CUSTOMER', 'CUSTOMER', 2, 11, 1, 0), +(89, 'daphne.ellis', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'daphne.ellis@gmail.com', 'Daphne', 'Ellis', 'Daphne Ellis', '403-730-0089', 'https://images.petshop.local/users/089.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), +(90, 'bennett.harrison', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'bennett.harrison@gmail.com', 'Bennett', 'Harrison', 'Bennett Harrison', '403-730-0090', 'https://images.petshop.local/users/090.webp', 'CUSTOMER', 'CUSTOMER', 1, 16, 1, 0), +(91, 'selena.gibson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'selena.gibson@gmail.com', 'Selena', 'Gibson', 'Selena Gibson', '403-730-0091', 'https://images.petshop.local/users/091.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(92, 'emmett.mcdonald', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'emmett.mcdonald@gmail.com', 'Emmett', 'Mcdonald', 'Emmett Mcdonald', '403-730-0092', 'https://images.petshop.local/users/092.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), +(93, 'phoebe.cruz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'phoebe.cruz@gmail.com', 'Phoebe', 'Cruz', 'Phoebe Cruz', '403-730-0093', 'https://images.petshop.local/users/093.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(94, 'sawyer.marshall', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sawyer.marshall@gmail.com', 'Sawyer', 'Marshall', 'Sawyer Marshall', '403-730-0094', 'https://images.petshop.local/users/094.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(95, 'keira.ortiz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'keira.ortiz@gmail.com', 'Keira', 'Ortiz', 'Keira Ortiz', '403-730-0095', 'https://images.petshop.local/users/095.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), +(96, 'landon.gomez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'landon.gomez@gmail.com', 'Landon', 'Gomez', 'Landon Gomez', '403-730-0096', 'https://images.petshop.local/users/096.webp', 'CUSTOMER', 'CUSTOMER', 1, 6, 1, 0), +(97, 'rosalie.murray', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'rosalie.murray@gmail.com', 'Rosalie', 'Murray', 'Rosalie Murray', '403-730-0097', 'https://images.petshop.local/users/097.webp', 'CUSTOMER', 'CUSTOMER', 2, 4, 1, 0), +(98, 'malik.freeman', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'malik.freeman@gmail.com', 'Malik', 'Freeman', 'Malik Freeman', '403-730-0098', 'https://images.petshop.local/users/098.webp', 'CUSTOMER', 'CUSTOMER', 3, 0, 1, 0), +(99, 'esme.wells', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'esme.wells@gmail.com', 'Esme', 'Wells', 'Esme Wells', '403-730-0099', 'https://images.petshop.local/users/099.webp', 'CUSTOMER', 'CUSTOMER', 1, 0, 1, 0), +(100, 'holden.webb', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'holden.webb@gmail.com', 'Holden', 'Webb', 'Holden Webb', '403-730-0100', 'https://images.petshop.local/users/100.webp', 'CUSTOMER', 'CUSTOMER', 2, 0, 1, 0), +(101, 'ai.bot', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'bot@petshop.com', 'AI', 'Bot', 'AI Bot', '000-000-0000', 'https://images.petshop.local/users/bot.webp', 'STAFF', 'CUSTOMER_SERVICE', NULL, 0, 1, 0); + +INSERT INTO supplier (supId, supCompany, supContactFirstName, supContactLastName, supEmail, supPhone) VALUES +(1, 'PetFood Inc', 'Robert', 'King', 'contact@petfood.com', '403-601-1001'), +(2, 'Toy World', 'Jennifer', 'Lee', 'sales@toyworld.com', '403-601-1002'), +(3, 'Pet Supplies Co', 'Kevin', 'White', 'info@petsupplies.com', '403-601-1003'), +(4, 'Animal Care Products', 'Nancy', 'Green', 'orders@animalcare.com', '403-601-1004'), +(5, 'Premium Pet Goods', 'Tom', 'Black', 'support@premiumpet.com', '403-601-1005'), +(6, 'Prairie Feeds', 'Lauren', 'Miles', 'hello@prairiefeeds.com', '403-601-1006'), +(7, 'Whisker Works', 'Darren', 'Cole', 'support@whiskerworks.com', '403-601-1007'), +(8, 'AquaLife Traders', 'Sonia', 'Bell', 'service@aqualife.com', '403-601-1008'), +(9, 'Feather & Finch', 'Maya', 'Stone', 'sales@featherfinch.com', '403-601-1009'), +(10, 'Habitat House', 'Riley', 'Ward', 'orders@habitathouse.com', '403-601-1010'), +(11, 'Trail Tails', 'Evan', 'Frost', 'contact@trailtails.com', '403-601-1011'), +(12, 'CalmPaws Health', 'Ivy', 'Brooks', 'care@calmpaws.com', '403-601-1012'); + +INSERT INTO category (categoryId, categoryName, categoryType) VALUES +(1, 'Dog Food', 'Product'), +(2, 'Cat Toys', 'Product'), +(3, 'Bird Supplies', 'Product'), +(4, 'Aquarium', 'Product'), +(5, 'Small Animals', 'Product'), +(6, 'Pet Health', 'Product'), +(7, 'Grooming Essentials', 'Product'), +(8, 'Habitats', 'Product'), +(9, 'Training & Travel', 'Product'), +(10, 'Treats & Chews', 'Product'); + +INSERT INTO service (serviceId, serviceName, serviceDesc, serviceDuration, servicePrice) VALUES +(1, 'Pet Grooming', 'Full grooming service for coat care and hygiene.', 60, 45.00), +(2, 'Nail Trimming', 'Quick nail trim for pets that need routine care.', 15, 12.00), +(3, 'Bath and Brush', 'Bathing and brushing service for shedding control.', 45, 34.00), +(4, 'Veterinary Checkup', 'General wellness check with basic health review.', 30, 80.00), +(5, 'Teeth Cleaning', 'Routine dental cleaning for eligible pets.', 50, 65.00), +(6, 'Wing Clipping', 'Safe wing trim for birds that require it.', 20, 18.00), +(7, 'Beak and Nail Care', 'Light beak and claw maintenance for birds.', 25, 22.00), +(8, 'Aquarium Health Check', 'Fish wellness and habitat consultation appointment.', 25, 28.00); + +INSERT INTO service_species (serviceId, species) VALUES +(1, 'Dog'), +(1, 'Cat'), +(1, 'Rabbit'), +(2, 'Dog'), +(2, 'Cat'), +(2, 'Rabbit'), +(2, 'Guinea Pig'), +(2, 'Hamster'), +(2, 'Bird'), +(3, 'Dog'), +(3, 'Cat'), +(3, 'Rabbit'), +(3, 'Guinea Pig'), +(4, 'Dog'), +(4, 'Cat'), +(4, 'Rabbit'), +(4, 'Bird'), +(4, 'Fish'), +(4, 'Hamster'), +(4, 'Guinea Pig'), +(5, 'Dog'), +(5, 'Cat'), +(5, 'Rabbit'), +(5, 'Guinea Pig'), +(5, 'Hamster'), +(6, 'Bird'), +(7, 'Bird'), +(8, 'Fish'); + +INSERT INTO product (prodId, prodName, prodPrice, categoryId, prodDesc, imageUrl) VALUES +(1, 'Premium Dog Food', 25.09, 1, 'Balanced nutrition for dogs. Premium Dog Food is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/001.webp'), +(2, 'Salmon Kibble Dog', 30.51, 1, 'Balanced nutrition for dogs. Salmon Kibble Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/002.webp'), +(3, 'Chicken Recipe Dog', 35.93, 1, 'Balanced nutrition for dogs. Chicken Recipe Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/003.webp'), +(4, 'Lamb Formula Dog', 41.36, 1, 'Balanced nutrition for dogs. Lamb Formula Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/004.webp'), +(5, 'Grain-Free Blend Dog', 46.78, 1, 'Balanced nutrition for dogs. Grain-Free Blend Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/005.webp'), +(6, 'Senior Dinner Dog', 52.20, 1, 'Balanced nutrition for dogs. Senior Dinner Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/006.webp'), +(7, 'Puppy Meal Dog', 57.62, 1, 'Balanced nutrition for dogs. Puppy Meal Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/007.webp'), +(8, 'Weight Control Bites Dog', 63.05, 1, 'Balanced nutrition for dogs. Weight Control Bites Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/008.webp'), +(9, 'High Energy Mix Dog', 68.47, 1, 'Balanced nutrition for dogs. High Energy Mix Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/009.webp'), +(10, 'Limited Ingredient Cuisine Dog', 73.89, 1, 'Balanced nutrition for dogs. Limited Ingredient Cuisine Dog is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/010.webp'), +(11, 'Catnip Toy', 7.49, 2, 'Playtime toy for cats. Catnip Toy is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/011.webp'), +(12, 'Feather Chaser Cat', 9.71, 2, 'Playtime toy for cats. Feather Chaser Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/012.webp'), +(13, 'Laser Teaser Cat', 11.93, 2, 'Playtime toy for cats. Laser Teaser Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/013.webp'), +(14, 'Tunnel Ball Cat', 14.16, 2, 'Playtime toy for cats. Tunnel Ball Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/014.webp'), +(15, 'Crinkle Set Cat', 16.38, 2, 'Playtime toy for cats. Crinkle Set Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/015.webp'), +(16, 'Wand Roller Cat', 18.60, 2, 'Playtime toy for cats. Wand Roller Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/016.webp'), +(17, 'Interactive Spinner Cat', 20.82, 2, 'Playtime toy for cats. Interactive Spinner Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/017.webp'), +(18, 'Bell Track Cat', 23.05, 2, 'Playtime toy for cats. Bell Track Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/018.webp'), +(19, 'Mouse Spring Cat', 25.27, 2, 'Playtime toy for cats. Mouse Spring Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/019.webp'), +(20, 'Puzzle Bundle Cat', 27.49, 2, 'Playtime toy for cats. Puzzle Bundle Cat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/020.webp'), +(21, 'Perch Bird Kit', 10.89, 3, 'Everyday bird care item. Perch Bird Kit is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/021.webp'), +(22, 'Seed Accessory Bird', 15.25, 3, 'Everyday bird care item. Seed Accessory Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/022.webp'), +(23, 'Mirror Set Bird', 19.60, 3, 'Everyday bird care item. Mirror Set Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/023.webp'), +(24, 'Ladder Pack Bird', 23.96, 3, 'Everyday bird care item. Ladder Pack Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/024.webp'), +(25, 'Bell Supply Bird', 28.31, 3, 'Everyday bird care item. Bell Supply Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/025.webp'), +(26, 'Foraging Refill Bird', 32.67, 3, 'Everyday bird care item. Foraging Refill Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/026.webp'), +(27, 'Treat Stand Bird', 37.02, 3, 'Everyday bird care item. Treat Stand Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/027.webp'), +(28, 'Cuttlebone Mix Bird', 41.38, 3, 'Everyday bird care item. Cuttlebone Mix Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/028.webp'), +(29, 'Carrier Bundle Bird', 45.73, 3, 'Everyday bird care item. Carrier Bundle Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/029.webp'), +(30, 'Bath Support Bird', 50.09, 3, 'Everyday bird care item. Bath Support Bird is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/030.webp'), +(31, 'Nano Aquarium Kit', 21.29, 4, 'Aquarium and fish care supply. Nano Aquarium Kit is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/031.webp'), +(32, 'Glass Accessory Aquarium', 34.00, 4, 'Aquarium and fish care supply. Glass Accessory Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/032.webp'), +(33, 'Filter Supply Aquarium', 46.71, 4, 'Aquarium and fish care supply. Filter Supply Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/033.webp'), +(34, 'Heater Filter Pack Aquarium', 59.42, 4, 'Aquarium and fish care supply. Heater Filter Pack Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/034.webp'), +(35, 'Water Tank Tool', 72.13, 4, 'Aquarium and fish care supply. Water Tank Tool is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/035.webp'), +(36, 'Coral Cleaner Aquarium', 84.85, 4, 'Aquarium and fish care supply. Coral Cleaner Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/036.webp'), +(37, 'Pebble Media Aquarium', 97.56, 4, 'Aquarium and fish care supply. Pebble Media Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/037.webp'), +(38, 'Plant Care Set Aquarium', 110.27, 4, 'Aquarium and fish care supply. Plant Care Set Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/038.webp'), +(39, 'Light Starter Aquarium', 122.98, 4, 'Aquarium and fish care supply. Light Starter Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/039.webp'), +(40, 'Pump System Aquarium', 135.69, 4, 'Aquarium and fish care supply. Pump System Aquarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/040.webp'), +(41, 'Hay Small Pet Kit', 11.04, 5, 'Care product for rabbits, hamsters, and guinea pigs. Hay Small Pet Kit is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/041.webp'), +(42, 'Hideout Supply Small Pet', 16.86, 5, 'Care product for rabbits, hamsters, and guinea pigs. Hideout Supply Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/042.webp'), +(43, 'Chew Care Pack Small Pet', 22.68, 5, 'Care product for rabbits, hamsters, and guinea pigs. Chew Care Pack Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/043.webp'), +(44, 'Wheel Comfort Item Small Pet', 28.51, 5, 'Care product for rabbits, hamsters, and guinea pigs. Wheel Comfort Item Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/044.webp'), +(45, 'Bottle Exercise Toy Small Pet', 34.33, 5, 'Care product for rabbits, hamsters, and guinea pigs. Bottle Exercise Toy Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/045.webp'), +(46, 'Pellet Refill Small Pet', 40.15, 5, 'Care product for rabbits, hamsters, and guinea pigs. Pellet Refill Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/046.webp'), +(47, 'Tunnel Bundle Small Pet', 45.97, 5, 'Care product for rabbits, hamsters, and guinea pigs. Tunnel Bundle Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/047.webp'), +(48, 'Bedding Snack Small Pet', 51.80, 5, 'Care product for rabbits, hamsters, and guinea pigs. Bedding Snack Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/048.webp'), +(49, 'Play Starter Small Pet', 57.62, 5, 'Care product for rabbits, hamsters, and guinea pigs. Play Starter Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/049.webp'), +(50, 'Nest Accessory Small Pet', 63.44, 5, 'Care product for rabbits, hamsters, and guinea pigs. Nest Accessory Small Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/050.webp'), +(51, 'Calming Support Pet', 14.09, 6, 'General health support product. Calming Support Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/051.webp'), +(52, 'Joint Drops Pet', 18.62, 6, 'General health support product. Joint Drops Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/052.webp'), +(53, 'Digestive Chew Pet', 23.16, 6, 'General health support product. Digestive Chew Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/053.webp'), +(54, 'Skin Spray Pet', 27.69, 6, 'General health support product. Skin Spray Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/054.webp'), +(55, 'Ear Kit Pet', 32.22, 6, 'General health support product. Ear Kit Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/055.webp'), +(56, 'Dental Gel Pet', 36.76, 6, 'General health support product. Dental Gel Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/056.webp'), +(57, 'Vitamin Tabs Pet', 41.29, 6, 'General health support product. Vitamin Tabs Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/057.webp'), +(58, 'Recovery Wash Pet', 45.82, 6, 'General health support product. Recovery Wash Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/058.webp'), +(59, 'Hydration Powder Pet', 50.36, 6, 'General health support product. Hydration Powder Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/059.webp'), +(60, 'Wellness Formula Pet', 54.89, 6, 'General health support product. Wellness Formula Pet is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/060.webp'), +(61, 'Gentle Shampoo', 10.69, 7, 'Grooming essential for regular care. Gentle Shampoo is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/061.webp'), +(62, 'Deep Clean Brush', 13.09, 7, 'Grooming essential for regular care. Deep Clean Brush is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/062.webp'), +(63, 'Oatmeal Wipe', 15.49, 7, 'Grooming essential for regular care. Oatmeal Wipe is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/063.webp'), +(64, 'Deodorizing Conditioner', 17.89, 7, 'Grooming essential for regular care. Deodorizing Conditioner is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/064.webp'), +(65, 'Detangling Comb', 20.29, 7, 'Grooming essential for regular care. Detangling Comb is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/065.webp'), +(66, 'Soft Coat Mist', 22.69, 7, 'Grooming essential for regular care. Soft Coat Mist is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/066.webp'), +(67, 'Paw Foam', 25.09, 7, 'Grooming essential for regular care. Paw Foam is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/067.webp'), +(68, 'Fresh Towel', 27.49, 7, 'Grooming essential for regular care. Fresh Towel is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/068.webp'), +(69, 'Silky Rinse', 29.89, 7, 'Grooming essential for regular care. Silky Rinse is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/069.webp'), +(70, 'Quick Dry Balm', 32.29, 7, 'Grooming essential for regular care. Quick Dry Balm is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/070.webp'), +(71, 'Compact Habitat', 37.99, 8, 'Habitat or enclosure for pet comfort. Compact Habitat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/071.webp'), +(72, 'Deluxe Crate', 53.99, 8, 'Habitat or enclosure for pet comfort. Deluxe Crate is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/072.webp'), +(73, 'Travel Carrier', 69.99, 8, 'Habitat or enclosure for pet comfort. Travel Carrier is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/073.webp'), +(74, 'Corner Enclosure', 85.99, 8, 'Habitat or enclosure for pet comfort. Corner Enclosure is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/074.webp'), +(75, 'Stacked Cage', 101.99, 8, 'Habitat or enclosure for pet comfort. Stacked Cage is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/075.webp'), +(76, 'Starter House Habitat', 117.99, 8, 'Habitat or enclosure for pet comfort. Starter House Habitat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/076.webp'), +(77, 'Ventilated Stand Habitat', 133.99, 8, 'Habitat or enclosure for pet comfort. Ventilated Stand Habitat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/077.webp'), +(78, 'Eco Loft Habitat', 149.99, 8, 'Habitat or enclosure for pet comfort. Eco Loft Habitat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/078.webp'), +(79, 'Secure Playpen Habitat', 165.99, 8, 'Habitat or enclosure for pet comfort. Secure Playpen Habitat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/079.webp'), +(80, 'Open-Air Terrarium', 181.99, 8, 'Habitat or enclosure for pet comfort. Open-Air Terrarium is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/080.webp'), +(81, 'Clicker Kit', 17.99, 9, 'Training and travel accessory. Clicker Kit is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/081.webp'), +(82, 'Harness Lead', 25.10, 9, 'Training and travel accessory. Harness Lead is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/082.webp'), +(83, 'Seatbelt Set', 32.21, 9, 'Training and travel accessory. Seatbelt Set is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/083.webp'), +(84, 'Travel Bag', 39.32, 9, 'Training and travel accessory. Travel Bag is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/084.webp'), +(85, 'Training Accessory', 46.43, 9, 'Training and travel accessory. Training Accessory is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/085.webp'), +(86, 'Recall Clip', 53.55, 9, 'Training and travel accessory. Recall Clip is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/086.webp'), +(87, 'Walking Tag', 60.66, 9, 'Training and travel accessory. Walking Tag is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/087.webp'), +(88, 'Crate Pack', 67.77, 9, 'Training and travel accessory. Crate Pack is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/088.webp'), +(89, 'Carrier Mat', 74.88, 9, 'Training and travel accessory. Carrier Mat is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/089.webp'), +(90, 'Adventure Guide', 81.99, 9, 'Training and travel accessory. Adventure Guide is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/090.webp'), +(91, 'Chicken Treats', 7.44, 10, 'Treat or chew for reward-based care. Chicken Treats is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/091.webp'), +(92, 'Duck Chews', 9.17, 10, 'Treat or chew for reward-based care. Duck Chews is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/092.webp'), +(93, 'Salmon Bites', 10.91, 10, 'Treat or chew for reward-based care. Salmon Bites is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/093.webp'), +(94, 'Pumpkin Snacks', 12.64, 10, 'Treat or chew for reward-based care. Pumpkin Snacks is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/094.webp'), +(95, 'Crunchy Rewards', 14.37, 10, 'Treat or chew for reward-based care. Crunchy Rewards is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/095.webp'), +(96, 'Soft-Bake Jerky', 16.11, 10, 'Treat or chew for reward-based care. Soft-Bake Jerky is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/096.webp'), +(97, 'Dental Cubes', 17.84, 10, 'Treat or chew for reward-based care. Dental Cubes is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/097.webp'), +(98, 'Mini Crisps', 19.57, 10, 'Treat or chew for reward-based care. Mini Crisps is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/098.webp'), +(99, 'Natural Morsels', 21.31, 10, 'Treat or chew for reward-based care. Natural Morsels is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/099.webp'), +(100, 'Freeze-Dried Biscuits', 23.04, 10, 'Treat or chew for reward-based care. Freeze-Dried Biscuits is stocked in all locations and priced for daily retail.', 'https://images.petshop.local/products/100.webp'); + +INSERT INTO productSupplier (supId, prodId, cost) VALUES +(1, 1, 14.55), +(1, 2, 18.61), +(6, 2, 19.91), +(1, 3, 23.00), +(1, 4, 27.71), +(6, 4, 29.10), +(1, 5, 32.75), +(1, 6, 38.11), +(6, 6, 39.25), +(1, 7, 31.69), +(1, 8, 36.57), +(6, 8, 39.13), +(1, 9, 41.77), +(1, 10, 47.29), +(6, 10, 49.65), +(2, 11, 5.02), +(2, 12, 6.80), +(7, 12, 7.00), +(2, 13, 8.71), +(2, 14, 7.79), +(7, 14, 8.34), +(2, 15, 9.50), +(2, 16, 11.35), +(7, 16, 11.92), +(2, 17, 13.32), +(2, 18, 15.44), +(7, 18, 15.90), +(2, 19, 17.69), +(2, 20, 20.07), +(7, 20, 21.47), +(9, 21, 5.99), +(9, 22, 8.85), +(3, 22, 9.29), +(9, 23, 11.96), +(9, 24, 15.33), +(3, 24, 15.79), +(9, 25, 18.97), +(9, 26, 22.87), +(3, 26, 24.47), +(9, 27, 27.02), +(9, 28, 22.76), +(3, 28, 23.90), +(9, 29, 26.52), +(9, 30, 30.55), +(3, 30, 31.47), +(8, 31, 13.63), +(8, 32, 22.78), +(3, 32, 24.37), +(8, 33, 32.70), +(8, 34, 43.38), +(3, 34, 45.55), +(8, 35, 39.67), +(8, 36, 49.21), +(3, 36, 50.69), +(8, 37, 59.51), +(8, 38, 70.57), +(3, 38, 75.51), +(8, 39, 82.40), +(8, 40, 94.98), +(3, 40, 99.73), +(3, 41, 8.06), +(3, 42, 9.27), +(10, 42, 9.55), +(3, 43, 13.15), +(3, 44, 17.39), +(10, 44, 18.61), +(3, 45, 21.97), +(3, 46, 26.90), +(10, 46, 28.25), +(3, 47, 32.18), +(3, 48, 37.81), +(10, 48, 38.94), +(3, 49, 31.69), +(3, 50, 36.80), +(10, 50, 39.38), +(12, 51, 8.59), +(12, 52, 11.92), +(4, 52, 12.52), +(12, 53, 15.52), +(12, 54, 19.38), +(4, 54, 19.96), +(12, 55, 23.52), +(12, 56, 20.22), +(4, 56, 21.64), +(12, 57, 23.95), +(12, 58, 27.95), +(4, 58, 29.35), +(12, 59, 32.23), +(12, 60, 36.78), +(4, 60, 37.88), +(4, 61, 7.48), +(4, 62, 9.56), +(5, 62, 10.23), +(4, 63, 8.52), +(4, 64, 10.38), +(5, 64, 10.90), +(4, 65, 12.38), +(4, 66, 14.52), +(5, 66, 14.96), +(4, 67, 16.81), +(4, 68, 19.24), +(5, 68, 20.59), +(4, 69, 21.82), +(4, 70, 17.76), +(5, 70, 18.65), +(10, 71, 22.03), +(10, 72, 32.93), +(3, 72, 33.92), +(10, 73, 44.79), +(10, 74, 57.61), +(3, 74, 61.64), +(10, 75, 71.39), +(10, 76, 86.13), +(3, 76, 90.44), +(10, 77, 73.69), +(10, 78, 86.99), +(3, 78, 89.60), +(10, 79, 101.25), +(10, 80, 116.47), +(3, 80, 124.62), +(11, 81, 12.05), +(11, 82, 17.57), +(5, 82, 18.45), +(11, 83, 23.51), +(11, 84, 21.63), +(5, 84, 22.28), +(11, 85, 26.93), +(11, 86, 32.67), +(5, 86, 34.96), +(11, 87, 38.82), +(11, 88, 45.41), +(5, 88, 47.68), +(11, 89, 52.42), +(11, 90, 59.85), +(5, 90, 61.65), +(1, 91, 4.09), +(1, 92, 5.32), +(5, 92, 5.69), +(1, 93, 6.66), +(1, 94, 8.09), +(5, 94, 8.49), +(1, 95, 9.63), +(1, 96, 11.28), +(5, 96, 11.62), +(1, 97, 13.02), +(1, 98, 10.76), +(5, 98, 11.51), +(1, 99, 12.36), +(1, 100, 14.05), +(5, 100, 14.75); + +INSERT INTO inventory (inventoryId, storeId, prodId, quantity) VALUES +(1, 1, 1, 52), +(2, 1, 2, 59), +(3, 1, 3, 66), +(4, 1, 4, 73), +(5, 1, 5, 80), +(6, 1, 6, 87), +(7, 1, 7, 29), +(8, 1, 8, 36), +(9, 1, 9, 43), +(10, 1, 10, 50), +(11, 1, 11, 37), +(12, 1, 12, 44), +(13, 1, 13, 51), +(14, 1, 14, 58), +(15, 1, 15, 65), +(16, 1, 16, 72), +(17, 1, 17, 14), +(18, 1, 18, 21), +(19, 1, 19, 28), +(20, 1, 20, 35), +(21, 1, 21, 42), +(22, 1, 22, 49), +(23, 1, 23, 56), +(24, 1, 24, 63), +(25, 1, 25, 70), +(26, 1, 26, 12), +(27, 1, 27, 19), +(28, 1, 28, 26), +(29, 1, 29, 33), +(30, 1, 30, 40), +(31, 1, 31, 8), +(32, 1, 32, 13), +(33, 1, 33, 18), +(34, 1, 34, 5), +(35, 1, 35, 10), +(36, 1, 36, 15), +(37, 1, 37, 20), +(38, 1, 38, 7), +(39, 1, 39, 12), +(40, 1, 40, 17), +(41, 1, 41, 52), +(42, 1, 42, 59), +(43, 1, 43, 66), +(44, 1, 44, 8), +(45, 1, 45, 15), +(46, 1, 46, 22), +(47, 1, 47, 29), +(48, 1, 48, 36), +(49, 1, 49, 43), +(50, 1, 50, 50), +(51, 1, 51, 57), +(52, 1, 52, 64), +(53, 1, 53, 71), +(54, 1, 54, 13), +(55, 1, 55, 20), +(56, 1, 56, 27), +(57, 1, 57, 34), +(58, 1, 58, 41), +(59, 1, 59, 48), +(60, 1, 60, 55), +(61, 1, 61, 62), +(62, 1, 62, 69), +(63, 1, 63, 11), +(64, 1, 64, 18), +(65, 1, 65, 25), +(66, 1, 66, 32), +(67, 1, 67, 39), +(68, 1, 68, 46), +(69, 1, 69, 53), +(70, 1, 70, 60), +(71, 1, 71, 10), +(72, 1, 72, 15), +(73, 1, 73, 20), +(74, 1, 74, 7), +(75, 1, 75, 12), +(76, 1, 76, 17), +(77, 1, 77, 4), +(78, 1, 78, 9), +(79, 1, 79, 14), +(80, 1, 80, 19), +(81, 1, 81, 72), +(82, 1, 82, 14), +(83, 1, 83, 21), +(84, 1, 84, 28), +(85, 1, 85, 35), +(86, 1, 86, 42), +(87, 1, 87, 49), +(88, 1, 88, 56), +(89, 1, 89, 63), +(90, 1, 90, 70), +(91, 1, 91, 32), +(92, 1, 92, 39), +(93, 1, 93, 46), +(94, 1, 94, 53), +(95, 1, 95, 60), +(96, 1, 96, 67), +(97, 1, 97, 74), +(98, 1, 98, 81), +(99, 1, 99, 88), +(100, 1, 100, 30), +(101, 2, 1, 69), +(102, 2, 2, 76), +(103, 2, 3, 83), +(104, 2, 4, 90), +(105, 2, 5, 32), +(106, 2, 6, 39), +(107, 2, 7, 46), +(108, 2, 8, 53), +(109, 2, 9, 60), +(110, 2, 10, 67), +(111, 2, 11, 54), +(112, 2, 12, 61), +(113, 2, 13, 68), +(114, 2, 14, 10), +(115, 2, 15, 17), +(116, 2, 16, 24), +(117, 2, 17, 31), +(118, 2, 18, 38), +(119, 2, 19, 45), +(120, 2, 20, 52), +(121, 2, 21, 59), +(122, 2, 22, 66), +(123, 2, 23, 8), +(124, 2, 24, 15), +(125, 2, 25, 22), +(126, 2, 26, 29), +(127, 2, 27, 36), +(128, 2, 28, 43), +(129, 2, 29, 50), +(130, 2, 30, 57), +(131, 2, 31, 19), +(132, 2, 32, 6), +(133, 2, 33, 11), +(134, 2, 34, 16), +(135, 2, 35, 21), +(136, 2, 36, 8), +(137, 2, 37, 13), +(138, 2, 38, 18), +(139, 2, 39, 5), +(140, 2, 40, 10), +(141, 2, 41, 69), +(142, 2, 42, 11), +(143, 2, 43, 18), +(144, 2, 44, 25), +(145, 2, 45, 32), +(146, 2, 46, 39), +(147, 2, 47, 46), +(148, 2, 48, 53), +(149, 2, 49, 60), +(150, 2, 50, 67), +(151, 2, 51, 9), +(152, 2, 52, 16), +(153, 2, 53, 23), +(154, 2, 54, 30), +(155, 2, 55, 37), +(156, 2, 56, 44), +(157, 2, 57, 51), +(158, 2, 58, 58), +(159, 2, 59, 65), +(160, 2, 60, 72), +(161, 2, 61, 14), +(162, 2, 62, 21), +(163, 2, 63, 28), +(164, 2, 64, 35), +(165, 2, 65, 42), +(166, 2, 66, 49), +(167, 2, 67, 56), +(168, 2, 68, 63), +(169, 2, 69, 70), +(170, 2, 70, 12), +(171, 2, 71, 21), +(172, 2, 72, 8), +(173, 2, 73, 13), +(174, 2, 74, 18), +(175, 2, 75, 5), +(176, 2, 76, 10), +(177, 2, 77, 15), +(178, 2, 78, 20), +(179, 2, 79, 7), +(180, 2, 80, 12), +(181, 2, 81, 24), +(182, 2, 82, 31), +(183, 2, 83, 38), +(184, 2, 84, 45), +(185, 2, 85, 52), +(186, 2, 86, 59), +(187, 2, 87, 66), +(188, 2, 88, 8), +(189, 2, 89, 15), +(190, 2, 90, 22), +(191, 2, 91, 49), +(192, 2, 92, 56), +(193, 2, 93, 63), +(194, 2, 94, 70), +(195, 2, 95, 77), +(196, 2, 96, 84), +(197, 2, 97, 91), +(198, 2, 98, 33), +(199, 2, 99, 40), +(200, 2, 100, 47), +(201, 3, 1, 86), +(202, 3, 2, 28), +(203, 3, 3, 35), +(204, 3, 4, 42), +(205, 3, 5, 49), +(206, 3, 6, 56), +(207, 3, 7, 63), +(208, 3, 8, 70), +(209, 3, 9, 77), +(210, 3, 10, 84), +(211, 3, 11, 71), +(212, 3, 12, 13), +(213, 3, 13, 20), +(214, 3, 14, 27), +(215, 3, 15, 34), +(216, 3, 16, 41), +(217, 3, 17, 48), +(218, 3, 18, 55), +(219, 3, 19, 62), +(220, 3, 20, 69), +(221, 3, 21, 11), +(222, 3, 22, 18), +(223, 3, 23, 25), +(224, 3, 24, 32), +(225, 3, 25, 39), +(226, 3, 26, 46), +(227, 3, 27, 53), +(228, 3, 28, 60), +(229, 3, 29, 67), +(230, 3, 30, 9), +(231, 3, 31, 12), +(232, 3, 32, 17), +(233, 3, 33, 4), +(234, 3, 34, 9), +(235, 3, 35, 14), +(236, 3, 36, 19), +(237, 3, 37, 6), +(238, 3, 38, 11), +(239, 3, 39, 16), +(240, 3, 40, 21), +(241, 3, 41, 21), +(242, 3, 42, 28), +(243, 3, 43, 35), +(244, 3, 44, 42), +(245, 3, 45, 49), +(246, 3, 46, 56), +(247, 3, 47, 63), +(248, 3, 48, 70), +(249, 3, 49, 12), +(250, 3, 50, 19), +(251, 3, 51, 26), +(252, 3, 52, 33), +(253, 3, 53, 40), +(254, 3, 54, 47), +(255, 3, 55, 54), +(256, 3, 56, 61), +(257, 3, 57, 68), +(258, 3, 58, 10), +(259, 3, 59, 17), +(260, 3, 60, 24), +(261, 3, 61, 31), +(262, 3, 62, 38), +(263, 3, 63, 45), +(264, 3, 64, 52), +(265, 3, 65, 59), +(266, 3, 66, 66), +(267, 3, 67, 8), +(268, 3, 68, 15), +(269, 3, 69, 22), +(270, 3, 70, 29), +(271, 3, 71, 14), +(272, 3, 72, 19), +(273, 3, 73, 6), +(274, 3, 74, 11), +(275, 3, 75, 16), +(276, 3, 76, 21), +(277, 3, 77, 8), +(278, 3, 78, 13), +(279, 3, 79, 18), +(280, 3, 80, 5), +(281, 3, 81, 41), +(282, 3, 82, 48), +(283, 3, 83, 55), +(284, 3, 84, 62), +(285, 3, 85, 69), +(286, 3, 86, 11), +(287, 3, 87, 18), +(288, 3, 88, 25), +(289, 3, 89, 32), +(290, 3, 90, 39), +(291, 3, 91, 66), +(292, 3, 92, 73), +(293, 3, 93, 80), +(294, 3, 94, 87), +(295, 3, 95, 29), +(296, 3, 96, 36), +(297, 3, 97, 43), +(298, 3, 98, 50), +(299, 3, 99, 57), +(300, 3, 100, 64); + +INSERT INTO purchaseOrder (purchaseOrderId, supId, storeId, orderDate, status) VALUES +(1, 3, 1, '2026-01-06', 'RECEIVED'), +(2, 4, 1, '2026-01-13', 'RECEIVED'), +(3, 5, 1, '2026-01-20', 'RECEIVED'), +(4, 4, 2, '2026-01-07', 'RECEIVED'), +(5, 5, 2, '2026-01-14', 'RECEIVED'), +(6, 6, 2, '2026-01-21', 'RECEIVED'), +(7, 5, 3, '2026-01-08', 'RECEIVED'), +(8, 6, 3, '2026-01-15', 'RECEIVED'), +(9, 7, 3, '2026-01-22', 'RECEIVED'), +(10, 4, 1, '2026-02-06', 'RECEIVED'), +(11, 5, 1, '2026-02-13', 'RECEIVED'), +(12, 6, 1, '2026-02-20', 'RECEIVED'), +(13, 5, 2, '2026-02-07', 'RECEIVED'), +(14, 6, 2, '2026-02-14', 'RECEIVED'), +(15, 7, 2, '2026-02-21', 'RECEIVED'), +(16, 6, 3, '2026-02-08', 'RECEIVED'), +(17, 7, 3, '2026-02-15', 'RECEIVED'), +(18, 8, 3, '2026-02-22', 'RECEIVED'), +(19, 5, 1, '2026-03-06', 'RECEIVED'), +(20, 6, 1, '2026-03-13', 'RECEIVED'), +(21, 7, 1, '2026-03-20', 'RECEIVED'), +(22, 6, 2, '2026-03-07', 'RECEIVED'), +(23, 7, 2, '2026-03-14', 'RECEIVED'), +(24, 8, 2, '2026-03-21', 'RECEIVED'), +(25, 7, 3, '2026-03-08', 'RECEIVED'), +(26, 8, 3, '2026-03-15', 'RECEIVED'), +(27, 9, 3, '2026-03-22', 'RECEIVED'), +(28, 6, 1, '2026-04-06', 'PENDING'), +(29, 7, 1, '2026-04-13', 'RECEIVED'), +(30, 8, 1, '2026-04-20', 'PLACED'), +(31, 7, 2, '2026-04-07', 'RECEIVED'), +(32, 8, 2, '2026-04-14', 'PLACED'), +(33, 9, 2, '2026-04-21', 'PENDING'), +(34, 8, 3, '2026-04-08', 'PLACED'), +(35, 9, 3, '2026-04-15', 'PENDING'), +(36, 10, 3, '2026-04-22', 'RECEIVED'); + +INSERT INTO coupon (couponId, couponCode, discountType, discountValue, minOrderAmount, active, startsAt, endsAt, usageLimit) VALUES +(1, 'NOCODE', 'FIXED', 0.00, 0.00, 1, NULL, NULL, NULL), +(2, 'WELCOME10', 'PERCENT', 10.00, 50.00, 1, '2026-01-01 00:00:00', '2026-12-31 23:59:59', 300), +(3, 'TREAT5', 'FIXED', 5.00, 25.00, 1, '2026-01-01 00:00:00', '2026-12-31 23:59:59', 500), +(4, 'GROOM15', 'PERCENT', 15.00, 60.00, 1, '2026-01-01 00:00:00', '2026-12-31 23:59:59', 200), +(5, 'FISHCARE8', 'FIXED', 8.00, 40.00, 1, '2026-01-01 00:00:00', '2026-12-31 23:59:59', 150), +(6, 'BIRD10', 'PERCENT', 10.00, 30.00, 1, '2026-01-01 00:00:00', '2026-12-31 23:59:59', 150), +(7, 'SPRING12', 'PERCENT', 12.00, 75.00, 1, '2026-03-01 00:00:00', '2026-05-31 23:59:59', 180), +(8, 'NEWPET20', 'FIXED', 20.00, 100.00, 1, '2026-01-01 00:00:00', '2026-12-31 23:59:59', 120); + +INSERT INTO pet (petId, petName, petSpecies, petBreed, petAge, petStatus, petPrice, imageUrl, ownerUserId, storeId) VALUES +(1, 'Buddy', 'Dog', 'Corgi', 2, 'Available', 466.80, 'https://images.petshop.local/pets/001.webp', NULL, 1), +(2, 'Milo', 'Dog', 'Beagle', 3, 'Available', 513.60, 'https://images.petshop.local/pets/002.webp', NULL, 1), +(3, 'Charlie', 'Dog', 'Husky', 4, 'Available', 560.40, 'https://images.petshop.local/pets/003.webp', NULL, 1), +(4, 'Luna', 'Cat', 'Persian', 5, 'Available', 395.20, 'https://images.petshop.local/pets/004.webp', NULL, 1), +(5, 'Max', 'Cat', 'Siamese', 6, 'Available', 429.00, 'https://images.petshop.local/pets/005.webp', NULL, 1), +(6, 'Bella', 'Rabbit', 'Dutch', 1, 'Available', 211.40, 'https://images.petshop.local/pets/006.webp', NULL, 1), +(7, 'Rocky', 'Bird', 'Budgie', 2, 'Available', 169.20, 'https://images.petshop.local/pets/007.webp', NULL, 1), +(8, 'Daisy', 'Fish', 'Guppy', 3, 'Available', 16.20, 'https://images.petshop.local/pets/008.webp', NULL, 1), +(9, 'Cooper', 'Hamster', 'Roborovski', 4, 'Available', 30.10, 'https://images.petshop.local/pets/009.webp', NULL, 1), +(10, 'Ruby', 'Guinea Pig', 'Abyssinian', 5, 'Available', 53.50, 'https://images.petshop.local/pets/010.webp', NULL, 1), +(11, 'Tucker', 'Dog', 'Border Collie', 6, 'Available', 574.80, 'https://images.petshop.local/pets/011.webp', NULL, 1), +(12, 'Rosie', 'Cat', 'Maine Coon', 1, 'Available', 405.60, 'https://images.petshop.local/pets/012.webp', NULL, 1), +(13, 'Bear', 'Dog', 'Labrador', 2, 'Available', 668.40, 'https://images.petshop.local/pets/013.webp', NULL, 2), +(14, 'Maggie', 'Dog', 'Golden Retriever', 3, 'Available', 715.20, 'https://images.petshop.local/pets/014.webp', NULL, 2), +(15, 'Leo', 'Dog', 'Husky', 4, 'Available', 762.00, 'https://images.petshop.local/pets/015.webp', NULL, 2), +(16, 'Zoey', 'Cat', 'Scottish Fold', 5, 'Available', 280.80, 'https://images.petshop.local/pets/016.webp', NULL, 2), +(17, 'Oliver', 'Cat', 'Siamese', 6, 'Available', 314.60, 'https://images.petshop.local/pets/017.webp', NULL, 2), +(18, 'Lola', 'Rabbit', 'Netherland Dwarf', 1, 'Available', 154.20, 'https://images.petshop.local/pets/018.webp', NULL, 2), +(19, 'Buster', 'Bird', 'Budgie', 2, 'Available', 116.40, 'https://images.petshop.local/pets/019.webp', NULL, 2), +(20, 'Sadie', 'Fish', 'Tetra', 3, 'Available', 33.00, 'https://images.petshop.local/pets/020.webp', NULL, 2), +(21, 'Toby', 'Hamster', 'Dwarf', 4, 'Available', 46.90, 'https://images.petshop.local/pets/021.webp', NULL, 2), +(22, 'Cleo', 'Guinea Pig', 'Abyssinian', 5, 'Available', 78.70, 'https://images.petshop.local/pets/022.webp', NULL, 2), +(23, 'Harley', 'Dog', 'Boxer', 6, 'Available', 776.40, 'https://images.petshop.local/pets/023.webp', NULL, 2), +(24, 'Mocha', 'Cat', 'Siamese', 1, 'Available', 291.20, 'https://images.petshop.local/pets/024.webp', NULL, 2), +(25, 'Rex', 'Dog', 'Poodle', 2, 'Available', 510.00, 'https://images.petshop.local/pets/025.webp', NULL, 3), +(26, 'Willow', 'Dog', 'Boxer', 3, 'Available', 556.80, 'https://images.petshop.local/pets/026.webp', NULL, 3), +(27, 'Gizmo', 'Dog', 'Labrador', 4, 'Available', 603.60, 'https://images.petshop.local/pets/027.webp', NULL, 3), +(28, 'Nala', 'Cat', 'Calico', 5, 'Available', 426.40, 'https://images.petshop.local/pets/028.webp', NULL, 3), +(29, 'Duke', 'Cat', 'Calico', 6, 'Available', 460.20, 'https://images.petshop.local/pets/029.webp', NULL, 3), +(30, 'Misty', 'Rabbit', 'Lionhead', 1, 'Available', 227.00, 'https://images.petshop.local/pets/030.webp', NULL, 3), +(31, 'Ace', 'Bird', 'Budgie', 2, 'Available', 63.60, 'https://images.petshop.local/pets/031.webp', NULL, 3), +(32, 'Pepper', 'Fish', 'Goldfish', 3, 'Available', 19.80, 'https://images.petshop.local/pets/032.webp', NULL, 3), +(33, 'Coco', 'Hamster', 'Syrian', 4, 'Available', 33.70, 'https://images.petshop.local/pets/033.webp', NULL, 3), +(34, 'Finn', 'Guinea Pig', 'Peruvian', 5, 'Available', 58.90, 'https://images.petshop.local/pets/034.webp', NULL, 3), +(35, 'Shadow', 'Dog', 'Beagle', 6, 'Available', 618.00, 'https://images.petshop.local/pets/035.webp', NULL, 3), +(36, 'Kitty', 'Cat', 'British Shorthair', 1, 'Available', 436.80, 'https://images.petshop.local/pets/036.webp', NULL, 3), +(37, 'Bruno', 'Bird', 'Cockatiel', 6, 'Adopted', 94.80, 'https://images.petshop.local/pets/037.webp', 16, 1), +(38, 'Snowball', 'Fish', 'Betta', 8, 'Adopted', 28.80, 'https://images.petshop.local/pets/038.webp', 17, 2), +(39, 'Zeus', 'Fish', 'Guppy', 2, 'Adopted', 33.90, 'https://images.petshop.local/pets/039.webp', 18, 3), +(40, 'Biscuit', 'Fish', 'Goldfish', 4, 'Adopted', 39.00, 'https://images.petshop.local/pets/040.webp', 19, 1), +(41, 'Patches', 'Dog', 'Boxer', 6, 'Adopted', 769.20, 'https://images.petshop.local/pets/041.webp', 20, 2), +(42, 'Scout', 'Fish', 'Goldfish', 8, 'Adopted', 19.20, 'https://images.petshop.local/pets/042.webp', 21, 3), +(43, 'Mittens', 'Rabbit', 'Holland Lop', 2, 'Adopted', 150.30, 'https://images.petshop.local/pets/043.webp', 22, 1), +(44, 'Thor', 'Fish', 'Betta', 4, 'Adopted', 29.40, 'https://images.petshop.local/pets/044.webp', 23, 2), +(45, 'Whiskers', 'Fish', 'Betta', 6, 'Adopted', 34.50, 'https://images.petshop.local/pets/045.webp', 24, 3), +(46, 'Goldie', 'Fish', 'Goldfish', 8, 'Adopted', 39.60, 'https://images.petshop.local/pets/046.webp', 25, 1), +(47, 'Midnight', 'Bird', 'Parakeet', 2, 'Adopted', 178.80, 'https://images.petshop.local/pets/047.webp', 26, 2), +(48, 'Storm', 'Bird', 'Canary', 4, 'Adopted', 79.20, 'https://images.petshop.local/pets/048.webp', 27, 3), +(49, 'Peanut', 'Bird', 'Parakeet', 6, 'Adopted', 99.60, 'https://images.petshop.local/pets/049.webp', 28, 1), +(50, 'Daisy', 'Bird', 'Canary', 8, 'Adopted', 120.00, 'https://images.petshop.local/pets/050.webp', 29, 2), +(51, 'Cleo', 'Rabbit', 'Netherland Dwarf', 2, 'Adopted', 197.10, 'https://images.petshop.local/pets/051.webp', 30, 3), +(52, 'Sunny', 'Cat', 'Maine Coon', 4, 'Adopted', 478.40, 'https://images.petshop.local/pets/052.webp', 31, 1), +(53, 'Maple', 'Dog', 'Boxer', 6, 'Adopted', 423.60, 'https://images.petshop.local/pets/053.webp', 32, 2), +(54, 'Nova', 'Rabbit', 'Dutch', 8, 'Adopted', 133.40, 'https://images.petshop.local/pets/054.webp', 33, 3), +(55, 'Piper', 'Dog', 'Shih Tzu', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/055.webp', 34, 2), +(56, 'Hazel', 'Cat', 'Bengal', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/056.webp', 35, 3), +(57, 'Jasper', 'Rabbit', 'Lionhead', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/057.webp', 36, 1), +(58, 'Remy', 'Bird', 'Canary', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/058.webp', 37, 2), +(59, 'Archie', 'Fish', 'Tetra', 4, 'Owned', 0.00, 'https://images.petshop.local/pets/059.webp', 38, 3), +(60, 'Skye', 'Hamster', 'Syrian', 6, 'Owned', 0.00, 'https://images.petshop.local/pets/060.webp', 39, 1), +(61, 'Otis', 'Guinea Pig', 'Abyssinian', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/061.webp', 40, 2), +(62, 'Marley', 'Dog', 'Border Collie', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/062.webp', 41, 3), +(63, 'Blue', 'Cat', 'Scottish Fold', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/063.webp', 42, 1), +(64, 'Honey', 'Rabbit', 'Netherland Dwarf', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/064.webp', 43, 2), +(65, 'Mochi', 'Bird', 'Canary', 4, 'Owned', 0.00, 'https://images.petshop.local/pets/065.webp', 44, 3), +(66, 'Kiki', 'Fish', 'Goldfish', 6, 'Owned', 0.00, 'https://images.petshop.local/pets/066.webp', 45, 1), +(67, 'River', 'Hamster', 'Dwarf', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/067.webp', 46, 2), +(68, 'Bowie', 'Guinea Pig', 'American', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/068.webp', 47, 3), +(69, 'Sage', 'Dog', 'Labrador', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/069.webp', 48, 1), +(70, 'Echo', 'Cat', 'Siamese', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/070.webp', 49, 2), +(71, 'Poppy', 'Rabbit', 'Dutch', 4, 'Owned', 0.00, 'https://images.petshop.local/pets/071.webp', 50, 3), +(72, 'Juniper', 'Bird', 'Parakeet', 6, 'Owned', 0.00, 'https://images.petshop.local/pets/072.webp', 51, 1), +(73, 'Winston', 'Fish', 'Guppy', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/073.webp', 52, 2), +(74, 'Freya', 'Hamster', 'Dwarf', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/074.webp', 53, 3), +(75, 'Finnley', 'Guinea Pig', 'Peruvian', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/075.webp', 54, 1), +(76, 'Louie', 'Dog', 'Corgi', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/076.webp', 55, 2), +(77, 'Ivy', 'Cat', 'Calico', 4, 'Owned', 0.00, 'https://images.petshop.local/pets/077.webp', 56, 3), +(78, 'Binx', 'Rabbit', 'Lionhead', 6, 'Owned', 0.00, 'https://images.petshop.local/pets/078.webp', 57, 1), +(79, 'Suki', 'Bird', 'Parakeet', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/079.webp', 58, 2), +(80, 'Mabel', 'Fish', 'Molly', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/080.webp', 59, 3), +(81, 'Rolo', 'Hamster', 'Syrian', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/081.webp', 60, 1), +(82, 'Clover', 'Guinea Pig', 'Abyssinian', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/082.webp', 61, 2), +(83, 'Frankie', 'Dog', 'German Shepherd', 4, 'Owned', 0.00, 'https://images.petshop.local/pets/083.webp', 62, 3), +(84, 'Tilly', 'Cat', 'Tabby', 6, 'Owned', 0.00, 'https://images.petshop.local/pets/084.webp', 63, 1), +(85, 'Rory', 'Rabbit', 'Holland Lop', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/085.webp', 64, 2), +(86, 'Gus', 'Bird', 'Budgie', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/086.webp', 65, 3), +(87, 'Peaches', 'Fish', 'Guppy', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/087.webp', 66, 1), +(88, 'Indie', 'Hamster', 'Roborovski', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/088.webp', 67, 2), +(89, 'Minnie', 'Guinea Pig', 'Peruvian', 4, 'Owned', 0.00, 'https://images.petshop.local/pets/089.webp', 68, 3), +(90, 'Koda', 'Dog', 'Shih Tzu', 6, 'Owned', 0.00, 'https://images.petshop.local/pets/090.webp', 69, 1), +(91, 'Mango', 'Cat', 'British Shorthair', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/091.webp', 70, 2), +(92, 'Pearl', 'Rabbit', 'Lionhead', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/092.webp', 71, 3), +(93, 'Onyx', 'Bird', 'Canary', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/093.webp', 72, 1), +(94, 'Pumpkin', 'Fish', 'Betta', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/094.webp', 73, 2), +(95, 'Nori', 'Hamster', 'Dwarf', 4, 'Owned', 0.00, 'https://images.petshop.local/pets/095.webp', 74, 3), +(96, 'Cosmo', 'Guinea Pig', 'American', 6, 'Owned', 0.00, 'https://images.petshop.local/pets/096.webp', 75, 1), +(97, 'Ziggy', 'Dog', 'Beagle', 8, 'Owned', 0.00, 'https://images.petshop.local/pets/097.webp', 76, 2), +(98, 'Bean', 'Cat', 'Calico', 10, 'Owned', 0.00, 'https://images.petshop.local/pets/098.webp', 77, 3), +(99, 'Flora', 'Rabbit', 'Holland Lop', 12, 'Owned', 0.00, 'https://images.petshop.local/pets/099.webp', 78, 1), +(100, 'Comet', 'Bird', 'Lovebird', 2, 'Owned', 0.00, 'https://images.petshop.local/pets/100.webp', 79, 2); + +INSERT INTO appointment (appointmentId, serviceId, petId, customerId, storeId, employeeId, appointmentDate, appointmentTime, appointmentStatus) VALUES +(1, 2, 37, 16, 1, 3, '2026-01-07', '09:00:00', 'COMPLETED'), +(2, 8, 38, 17, 2, 8, '2026-01-09', '10:30:00', 'COMPLETED'), +(3, 4, 39, 18, 3, 13, '2026-01-11', '13:00:00', 'MISSED'), +(4, 8, 40, 19, 1, 6, '2026-01-13', '14:30:00', 'CANCELLED'), +(5, 5, 41, 20, 2, 7, '2026-01-15', '16:00:00', 'COMPLETED'), +(6, 8, 42, 21, 3, 12, '2026-01-17', '09:00:00', 'COMPLETED'), +(7, 2, 43, 22, 1, 5, '2026-01-19', '10:30:00', 'COMPLETED'), +(8, 8, 44, 23, 2, 10, '2026-01-21', '13:00:00', 'MISSED'), +(9, 4, 45, 24, 3, 11, '2026-01-23', '14:30:00', 'CANCELLED'), +(10, 8, 46, 25, 1, 4, '2026-01-25', '16:00:00', 'COMPLETED'), +(11, 6, 47, 26, 2, 9, '2026-01-27', '09:00:00', 'COMPLETED'), +(12, 7, 48, 27, 3, 14, '2026-01-29', '10:30:00', 'COMPLETED'), +(13, 2, 49, 28, 1, 3, '2026-01-31', '13:00:00', 'MISSED'), +(14, 4, 50, 29, 2, 8, '2026-02-02', '14:30:00', 'CANCELLED'), +(15, 5, 51, 30, 3, 13, '2026-02-04', '16:00:00', 'COMPLETED'), +(16, 1, 52, 31, 1, 6, '2026-02-06', '09:00:00', 'COMPLETED'), +(17, 2, 53, 32, 2, 7, '2026-02-08', '10:30:00', 'COMPLETED'), +(18, 3, 54, 33, 3, 12, '2026-02-10', '13:00:00', 'MISSED'), +(19, 4, 55, 34, 2, 9, '2026-02-12', '14:30:00', 'CANCELLED'), +(20, 5, 56, 35, 3, 14, '2026-02-14', '16:00:00', 'COMPLETED'), +(21, 1, 57, 36, 1, 3, '2026-02-16', '09:00:00', 'COMPLETED'), +(22, 4, 58, 37, 2, 8, '2026-02-18', '10:30:00', 'COMPLETED'), +(23, 4, 59, 38, 3, 13, '2026-02-20', '13:00:00', 'MISSED'), +(24, 5, 60, 39, 1, 6, '2026-02-22', '14:30:00', 'CANCELLED'), +(25, 2, 61, 40, 2, 7, '2026-02-24', '16:00:00', 'COMPLETED'), +(26, 1, 62, 41, 3, 12, '2026-02-26', '09:00:00', 'COMPLETED'), +(27, 2, 63, 42, 1, 5, '2026-02-28', '10:30:00', 'COMPLETED'), +(28, 3, 64, 43, 2, 10, '2026-03-02', '13:00:00', 'MISSED'), +(29, 2, 65, 44, 3, 11, '2026-03-04', '14:30:00', 'CANCELLED'), +(30, 8, 66, 45, 1, 4, '2026-03-06', '16:00:00', 'COMPLETED'), +(31, 2, 67, 46, 2, 9, '2026-03-08', '09:00:00', 'COMPLETED'), +(32, 5, 68, 47, 3, 14, '2026-03-10', '10:30:00', 'COMPLETED'), +(33, 3, 69, 48, 1, 3, '2026-03-12', '13:00:00', 'MISSED'), +(34, 4, 70, 49, 2, 8, '2026-03-14', '14:30:00', 'CANCELLED'), +(35, 5, 71, 50, 3, 13, '2026-03-16', '16:00:00', 'COMPLETED'), +(36, 7, 72, 51, 1, 6, '2026-03-18', '09:00:00', 'COMPLETED'), +(37, 4, 73, 52, 2, 7, '2026-03-20', '10:30:00', 'COMPLETED'), +(38, 4, 74, 53, 3, 12, '2026-03-22', '13:00:00', 'MISSED'), +(39, 4, 75, 54, 1, 5, '2026-03-24', '14:30:00', 'CANCELLED'), +(40, 5, 76, 55, 2, 10, '2026-03-26', '16:00:00', 'COMPLETED'), +(41, 1, 77, 56, 3, 11, '2026-03-28', '09:00:00', 'COMPLETED'), +(42, 2, 78, 57, 1, 4, '2026-03-30', '10:30:00', 'COMPLETED'), +(43, 6, 79, 58, 2, 9, '2026-04-01', '13:00:00', 'BOOKED'), +(44, 8, 80, 59, 3, 14, '2026-04-03', '14:30:00', 'BOOKED'), +(45, 5, 81, 60, 1, 3, '2026-04-05', '16:00:00', 'BOOKED'), +(46, 3, 82, 61, 2, 8, '2026-04-07', '09:00:00', 'BOOKED'), +(47, 2, 83, 62, 3, 13, '2026-04-09', '10:30:00', 'BOOKED'), +(48, 3, 84, 63, 1, 6, '2026-04-11', '13:00:00', 'BOOKED'), +(49, 4, 85, 64, 2, 7, '2026-04-13', '14:30:00', 'BOOKED'), +(50, 4, 86, 65, 3, 12, '2026-04-15', '16:00:00', 'BOOKED'), +(51, 4, 87, 66, 1, 5, '2026-04-17', '09:00:00', 'BOOKED'), +(52, 2, 88, 67, 2, 10, '2026-04-19', '10:30:00', 'BOOKED'), +(53, 2, 89, 68, 3, 11, '2026-04-21', '13:00:00', 'BOOKED'), +(54, 4, 90, 69, 1, 4, '2026-04-23', '14:30:00', 'BOOKED'), +(55, 5, 91, 70, 2, 9, '2026-04-25', '16:00:00', 'BOOKED'), +(56, 1, 92, 71, 3, 14, '2026-04-27', '09:00:00', 'BOOKED'), +(57, 2, 93, 72, 1, 3, '2026-04-29', '10:30:00', 'BOOKED'), +(58, 8, 94, 73, 2, 8, '2026-05-01', '13:00:00', 'BOOKED'), +(59, 4, 95, 74, 3, 13, '2026-05-03', '14:30:00', 'BOOKED'), +(60, 5, 96, 75, 1, 6, '2026-05-05', '16:00:00', 'BOOKED'), +(61, 1, 97, 76, 2, 7, '2026-01-07', '09:00:00', 'COMPLETED'), +(62, 2, 98, 77, 3, 12, '2026-01-09', '10:30:00', 'COMPLETED'), +(63, 3, 99, 78, 1, 5, '2026-01-11', '13:00:00', 'MISSED'), +(64, 7, 100, 79, 2, 10, '2026-01-13', '14:30:00', 'CANCELLED'), +(65, 2, 37, 16, 1, 3, '2026-01-15', '16:00:00', 'COMPLETED'), +(66, 8, 38, 17, 2, 8, '2026-01-17', '09:00:00', 'COMPLETED'), +(67, 4, 39, 18, 3, 13, '2026-01-19', '10:30:00', 'COMPLETED'), +(68, 8, 40, 19, 1, 6, '2026-01-21', '13:00:00', 'MISSED'), +(69, 4, 41, 20, 2, 7, '2026-01-23', '14:30:00', 'CANCELLED'), +(70, 8, 42, 21, 3, 12, '2026-01-25', '16:00:00', 'COMPLETED'), +(71, 1, 43, 22, 1, 5, '2026-01-27', '09:00:00', 'COMPLETED'), +(72, 8, 44, 23, 2, 10, '2026-01-29', '10:30:00', 'COMPLETED'), +(73, 4, 45, 24, 3, 11, '2026-01-31', '13:00:00', 'MISSED'), +(74, 8, 46, 25, 1, 4, '2026-02-02', '14:30:00', 'CANCELLED'), +(75, 6, 47, 26, 2, 9, '2026-02-04', '16:00:00', 'COMPLETED'), +(76, 7, 48, 27, 3, 14, '2026-02-06', '09:00:00', 'COMPLETED'), +(77, 2, 49, 28, 1, 3, '2026-02-08', '10:30:00', 'COMPLETED'), +(78, 4, 50, 29, 2, 8, '2026-02-10', '13:00:00', 'MISSED'), +(79, 4, 51, 30, 3, 13, '2026-02-12', '14:30:00', 'CANCELLED'), +(80, 5, 52, 31, 1, 6, '2026-02-14', '16:00:00', 'COMPLETED'), +(81, 1, 53, 32, 2, 7, '2026-02-16', '09:00:00', 'COMPLETED'), +(82, 2, 54, 33, 3, 12, '2026-02-18', '10:30:00', 'COMPLETED'), +(83, 3, 55, 34, 2, 9, '2026-02-20', '13:00:00', 'MISSED'), +(84, 4, 56, 35, 3, 14, '2026-02-22', '14:30:00', 'CANCELLED'), +(85, 5, 57, 36, 1, 3, '2026-02-24', '16:00:00', 'COMPLETED'), +(86, 4, 58, 37, 2, 8, '2026-02-26', '09:00:00', 'COMPLETED'), +(87, 4, 59, 38, 3, 13, '2026-02-28', '10:30:00', 'COMPLETED'), +(88, 2, 60, 39, 1, 6, '2026-03-02', '13:00:00', 'MISSED'), +(89, 2, 61, 40, 2, 7, '2026-03-04', '14:30:00', 'CANCELLED'), +(90, 5, 62, 41, 3, 12, '2026-03-06', '16:00:00', 'COMPLETED'); + +INSERT INTO adoption (adoptionId, petId, customerId, employeeId, sourceStoreId, adoptionDate, adoptionStatus) VALUES +(1, 37, 16, 3, 1, '2026-01-08', 'Completed'), +(2, 38, 17, 8, 2, '2026-01-13', 'Completed'), +(3, 39, 18, 13, 3, '2026-01-18', 'Completed'), +(4, 40, 19, 6, 1, '2026-01-23', 'Completed'), +(5, 41, 20, 7, 2, '2026-01-28', 'Completed'), +(6, 42, 21, 12, 3, '2026-02-02', 'Completed'), +(7, 43, 22, 5, 1, '2026-02-07', 'Completed'), +(8, 44, 23, 10, 2, '2026-02-12', 'Completed'), +(9, 45, 24, 11, 3, '2026-02-17', 'Completed'), +(10, 46, 25, 4, 1, '2026-02-22', 'Completed'), +(11, 47, 26, 9, 2, '2026-02-27', 'Completed'), +(12, 48, 27, 14, 3, '2026-03-04', 'Completed'), +(13, 49, 28, 3, 1, '2026-03-09', 'Completed'), +(14, 50, 29, 8, 2, '2026-03-14', 'Completed'), +(15, 51, 30, 13, 3, '2026-03-19', 'Completed'), +(16, 52, 31, 6, 1, '2026-03-24', 'Completed'), +(17, 53, 32, 7, 2, '2026-03-29', 'Completed'), +(18, 54, 33, 12, 3, '2026-04-03', 'Completed'); + +INSERT INTO cart (cartId, userId, storeId, couponId, cartStatus, subtotalAmount, discountAmount, totalAmount) VALUES +(1, 3, 1, 1, 'CHECKED_OUT', 44.51, 0.00, 44.51), +(2, 4, 1, 2, 'CHECKED_OUT', 252.00, 25.20, 226.80), +(3, 5, 1, 3, 'CHECKED_OUT', 432.33, 5.00, 427.33), +(4, 6, 1, 7, 'CHECKED_OUT', 108.67, 13.04, 95.63), +(5, 7, 2, 1, 'CHECKED_OUT', 512.62, 0.00, 512.62), +(6, 8, 2, 1, 'CHECKED_OUT', 481.83, 0.00, 481.83), +(7, 9, 2, 4, 'CHECKED_OUT', 78.06, 11.71, 66.35), +(8, 10, 2, 5, 'CHECKED_OUT', 212.94, 8.00, 204.94), +(9, 11, 3, 1, 'CHECKED_OUT', 729.31, 0.00, 729.31), +(10, 12, 3, 6, 'CHECKED_OUT', 221.87, 22.19, 199.68), +(11, 13, 3, 1, 'CHECKED_OUT', 162.19, 0.00, 162.19), +(12, 14, 3, 2, 'CHECKED_OUT', 593.40, 59.34, 534.06), +(13, 15, 1, 3, 'ACTIVE', 78.65, 5.00, 73.65), +(14, 16, 2, 7, 'ACTIVE', 140.29, 16.83, 123.46), +(15, 17, 3, 1, 'ACTIVE', 261.60, 0.00, 261.60), +(16, 18, 1, 1, 'ACTIVE', 93.84, 0.00, 93.84), +(17, 19, 2, 4, 'ACTIVE', 167.87, 25.18, 142.69), +(18, 20, 3, 5, 'ACTIVE', 206.96, 8.00, 198.96), +(19, 21, 1, 1, 'ACTIVE', 257.56, 0.00, 257.56), +(20, 22, 2, 6, 'ACTIVE', 258.59, 25.86, 232.73), +(21, 23, 3, 1, 'ACTIVE', 340.69, 0.00, 340.69), +(22, 24, 1, 2, 'ACTIVE', 152.52, 15.25, 137.27), +(23, 25, 2, 3, 'ACTIVE', 266.50, 5.00, 261.50), +(24, 26, 3, 7, 'ACTIVE', 231.01, 27.72, 203.29), +(25, 27, 1, 1, 'ACTIVE', 393.87, 0.00, 393.87), +(26, 28, 2, 1, 'ACTIVE', 437.53, 0.00, 437.53), +(27, 29, 3, 4, 'ACTIVE', 258.63, 38.79, 219.84), +(28, 30, 1, 5, 'ACTIVE', 132.17, 8.00, 124.17), +(29, 31, 2, 1, 'ACTIVE', 250.10, 0.00, 250.10), +(30, 32, 3, 6, 'ACTIVE', 498.48, 49.85, 448.63), +(31, 33, 1, 1, 'ABANDONED', 37.99, 0.00, 37.99), +(32, 34, 2, 2, 'ABANDONED', 318.98, 31.90, 287.08), +(33, 35, 3, 3, 'ABANDONED', 399.18, 5.00, 394.18), +(34, 36, 1, 7, 'ABANDONED', 79.36, 9.52, 69.84), +(35, 37, 2, 1, 'ABANDONED', 446.97, 0.00, 446.97), +(36, 38, 3, 1, 'ABANDONED', 714.69, 0.00, 714.69), +(37, 39, 1, 4, 'ABANDONED', 58.94, 0.00, 58.94), +(38, 40, 2, 5, 'ABANDONED', 248.85, 8.00, 240.85), +(39, 41, 3, 1, 'ABANDONED', 444.14, 0.00, 444.14), +(40, 42, 1, 6, 'ABANDONED', 178.85, 17.89, 160.96); + +INSERT INTO cart_item (cartItemId, cartId, prodId, quantity, unitPrice) VALUES +(1, 1, 1, 1, 25.09), +(2, 1, 12, 2, 9.71), +(3, 2, 8, 2, 63.05), +(4, 2, 19, 3, 25.27), +(5, 2, 30, 1, 50.09), +(6, 3, 15, 3, 16.38), +(7, 3, 26, 1, 32.67), +(8, 3, 37, 2, 97.56), +(9, 3, 48, 3, 51.80), +(10, 4, 22, 1, 15.25), +(11, 4, 33, 2, 46.71), +(12, 5, 29, 2, 45.73), +(13, 5, 40, 3, 135.69), +(14, 5, 51, 1, 14.09), +(15, 6, 36, 3, 84.85), +(16, 6, 47, 1, 45.97), +(17, 6, 58, 2, 45.82), +(18, 6, 69, 3, 29.89), +(19, 7, 43, 1, 22.68), +(20, 7, 54, 2, 27.69), +(21, 8, 50, 2, 63.44), +(22, 8, 61, 3, 10.69), +(23, 8, 72, 1, 53.99), +(24, 9, 57, 3, 41.29), +(25, 9, 68, 1, 27.49), +(26, 9, 79, 2, 165.99), +(27, 9, 90, 3, 81.99), +(28, 10, 64, 1, 17.89), +(29, 10, 75, 2, 101.99), +(30, 11, 71, 2, 37.99), +(31, 11, 82, 3, 25.10), +(32, 11, 93, 1, 10.91), +(33, 12, 78, 3, 149.99), +(34, 12, 89, 1, 74.88), +(35, 12, 100, 2, 23.04), +(36, 12, 11, 3, 7.49), +(37, 13, 85, 1, 46.43), +(38, 13, 96, 2, 16.11), +(39, 14, 92, 2, 9.17), +(40, 14, 3, 3, 35.93), +(41, 14, 14, 1, 14.16), +(42, 15, 99, 3, 21.31), +(43, 15, 10, 1, 73.89), +(44, 15, 21, 2, 10.89), +(45, 15, 32, 3, 34.00), +(46, 16, 6, 1, 52.20), +(47, 16, 17, 2, 20.82), +(48, 17, 13, 2, 11.93), +(49, 17, 24, 3, 23.96), +(50, 17, 35, 1, 72.13), +(51, 18, 20, 3, 27.49), +(52, 18, 31, 1, 21.29), +(53, 18, 42, 2, 16.86), +(54, 18, 53, 3, 23.16), +(55, 19, 27, 1, 37.02), +(56, 19, 38, 2, 110.27), +(57, 20, 34, 2, 59.42), +(58, 20, 45, 3, 34.33), +(59, 20, 56, 1, 36.76), +(60, 21, 41, 3, 11.04), +(61, 21, 52, 1, 18.62), +(62, 21, 63, 2, 15.49), +(63, 21, 74, 3, 85.99), +(64, 22, 48, 1, 51.80), +(65, 22, 59, 2, 50.36), +(66, 23, 55, 2, 32.22), +(67, 23, 66, 3, 22.69), +(68, 23, 77, 1, 133.99), +(69, 24, 62, 3, 13.09), +(70, 24, 73, 1, 69.99), +(71, 24, 84, 2, 39.32), +(72, 24, 95, 3, 14.37), +(73, 25, 69, 1, 29.89), +(74, 25, 80, 2, 181.99), +(75, 26, 76, 2, 117.99), +(76, 26, 87, 3, 60.66), +(77, 26, 98, 1, 19.57), +(78, 27, 83, 3, 32.21), +(79, 27, 94, 1, 12.64), +(80, 27, 5, 2, 46.78), +(81, 27, 16, 3, 18.60), +(82, 28, 90, 1, 81.99), +(83, 28, 1, 2, 25.09), +(84, 29, 97, 2, 17.84), +(85, 29, 8, 3, 63.05), +(86, 29, 19, 1, 25.27), +(87, 30, 4, 3, 41.36), +(88, 30, 15, 1, 16.38), +(89, 30, 26, 2, 32.67), +(90, 30, 37, 3, 97.56), +(91, 31, 11, 1, 7.49), +(92, 31, 22, 2, 15.25), +(93, 32, 18, 2, 23.05), +(94, 32, 29, 3, 45.73), +(95, 32, 40, 1, 135.69), +(96, 33, 25, 3, 28.31), +(97, 33, 36, 1, 84.85), +(98, 33, 47, 2, 45.97), +(99, 33, 58, 3, 45.82), +(100, 34, 32, 1, 34.00), +(101, 34, 43, 2, 22.68), +(102, 35, 39, 2, 122.98), +(103, 35, 50, 3, 63.44), +(104, 35, 61, 1, 10.69), +(105, 36, 46, 3, 40.15), +(106, 36, 57, 1, 41.29), +(107, 36, 68, 2, 27.49), +(108, 36, 79, 3, 165.99), +(109, 37, 53, 1, 23.16), +(110, 37, 64, 2, 17.89), +(111, 38, 60, 2, 54.89), +(112, 38, 71, 3, 37.99), +(113, 38, 82, 1, 25.10), +(114, 39, 67, 3, 25.09), +(115, 39, 78, 1, 149.99), +(116, 39, 89, 2, 74.88), +(117, 39, 100, 3, 23.04), +(118, 40, 74, 1, 85.99), +(119, 40, 85, 2, 46.43); + +INSERT INTO sale (saleId, saleDate, totalAmount, paymentMethod, employeeId, storeId, customerId, isRefund, originalSaleId, channel, cartId, couponId, subtotalAmount, couponDiscountAmount, employeeDiscountAmount, pointsEarned) VALUES +(1, '2026-02-02 10:11:00', 37.83, 'Cash', 3, 1, 3, 0, NULL, 'ONLINE', 1, 1, 44.51, 0.00, 6.68, 0), +(2, '2026-02-03 10:22:00', 192.78, 'Card', 4, 1, 4, 0, NULL, 'ONLINE', 2, 2, 252.00, 25.20, 34.02, 0), +(3, '2026-02-04 10:33:00', 363.23, 'Card', 5, 1, 5, 0, NULL, 'ONLINE', 3, 3, 432.33, 5.00, 64.10, 0), +(4, '2026-02-05 10:44:00', 81.29, 'Cash', 6, 1, 6, 0, NULL, 'ONLINE', 4, 7, 108.67, 13.04, 14.34, 0), +(5, '2026-02-06 10:55:00', 435.73, 'Card', 7, 2, 7, 0, NULL, 'ONLINE', 5, 1, 512.62, 0.00, 76.89, 0), +(6, '2026-02-07 11:06:00', 409.56, 'Card', 8, 2, 8, 0, NULL, 'ONLINE', 6, 1, 481.83, 0.00, 72.27, 0), +(7, '2026-02-08 11:17:00', 56.40, 'Cash', 9, 2, 9, 0, NULL, 'ONLINE', 7, 4, 78.06, 11.71, 9.95, 0), +(8, '2026-02-09 11:28:00', 174.20, 'Card', 10, 2, 10, 0, NULL, 'ONLINE', 8, 5, 212.94, 8.00, 30.74, 0), +(9, '2026-02-10 11:39:00', 619.91, 'Card', 11, 3, 11, 0, NULL, 'ONLINE', 9, 1, 729.31, 0.00, 109.40, 0), +(10, '2026-02-11 11:50:00', 169.73, 'Card', 12, 3, 12, 0, NULL, 'ONLINE', 10, 6, 221.87, 22.19, 29.95, 0), +(11, '2026-02-12 12:01:00', 137.86, 'Cash', 13, 3, 13, 0, NULL, 'ONLINE', 11, 1, 162.19, 0.00, 24.33, 0), +(12, '2026-02-13 12:12:00', 453.95, 'Card', 14, 3, 14, 0, NULL, 'ONLINE', 12, 2, 593.40, 59.34, 80.11, 0), +(13, '2026-01-05 09:15:00', 82.72, 'Card', 3, 1, 15, 0, NULL, 'IN_STORE', NULL, 1, 82.72, 0.00, 0.00, 0), +(14, '2026-01-05 09:52:00', 120.43, 'Card', 8, 2, 16, 0, NULL, 'IN_STORE', NULL, 2, 133.81, 13.38, 0.00, 12), +(15, '2026-01-06 10:29:00', 153.21, 'Cash', 13, 3, 17, 0, NULL, 'IN_STORE', NULL, 1, 153.21, 0.00, 0.00, 15), +(16, '2026-01-06 11:06:00', 20.27, 'Card', 6, 1, 18, 0, NULL, 'IN_STORE', NULL, 3, 25.27, 5.00, 0.00, 2), +(17, '2026-01-07 11:43:00', 58.96, 'Cash', 7, 2, 19, 0, NULL, 'IN_STORE', NULL, 1, 58.96, 0.00, 0.00, 5), +(18, '2026-01-07 12:20:00', 124.54, 'Card', 12, 3, 20, 0, NULL, 'IN_STORE', NULL, 7, 141.52, 16.98, 0.00, 12), +(19, '2026-01-08 12:57:00', 118.84, 'Card', 5, 1, 21, 0, NULL, 'IN_STORE', NULL, 1, 118.84, 0.00, 0.00, 11), +(20, '2026-01-08 13:34:00', 167.02, 'Cash', 10, 2, 22, 0, NULL, 'IN_STORE', NULL, 4, 196.50, 29.48, 0.00, 16), +(21, '2026-01-09 14:11:00', 367.69, 'Card', 11, 3, 23, 0, NULL, 'IN_STORE', NULL, 1, 367.69, 0.00, 0.00, 36), +(22, '2026-01-09 14:48:00', 57.62, 'Cash', 4, 1, 24, 0, NULL, 'IN_STORE', NULL, 1, 57.62, 0.00, 0.00, 5), +(23, '2026-01-10 15:25:00', 84.03, 'Card', 9, 2, 25, 0, NULL, 'IN_STORE', NULL, 6, 93.37, 9.34, 0.00, 8), +(24, '2026-01-10 16:02:00', 297.25, 'Card', 14, 3, 26, 0, NULL, 'IN_STORE', NULL, 1, 297.25, 0.00, 0.00, 29), +(25, '2026-01-11 16:39:00', 35.78, 'Cash', 3, 1, 27, 0, NULL, 'IN_STORE', NULL, 2, 35.78, 0.00, 0.00, 3), +(26, '2026-01-11 17:16:00', 136.99, 'Card', 8, 2, 28, 0, NULL, 'IN_STORE', NULL, 1, 136.99, 0.00, 0.00, 13), +(27, '2026-01-12 17:53:00', 300.52, 'Cash', 13, 3, 29, 0, NULL, 'IN_STORE', NULL, 3, 305.52, 5.00, 0.00, 30), +(28, '2026-01-12 18:30:00', 165.99, 'Card', 6, 1, 30, 0, NULL, 'IN_STORE', NULL, 1, 165.99, 0.00, 0.00, 16), +(29, '2026-01-13 19:07:00', 91.28, 'Card', 7, 2, 31, 0, NULL, 'IN_STORE', NULL, 7, 103.73, 12.45, 0.00, 9), +(30, '2026-01-13 19:44:00', 198.88, 'Cash', 12, 3, 32, 0, NULL, 'IN_STORE', NULL, 1, 198.88, 0.00, 0.00, 19), +(31, '2026-01-14 20:21:00', 25.28, 'Card', 5, 1, 33, 0, NULL, 'IN_STORE', NULL, 4, 25.28, 0.00, 0.00, 2), +(32, '2026-01-14 20:58:00', 58.51, 'Cash', 10, 2, 34, 0, NULL, 'IN_STORE', NULL, 1, 58.51, 0.00, 0.00, 5), +(33, '2026-01-15 21:35:00', 314.15, 'Card', 11, 3, 35, 0, NULL, 'IN_STORE', NULL, 1, 314.15, 0.00, 0.00, 31), +(34, '2026-01-15 22:12:00', 61.62, 'Card', 4, 1, 36, 0, NULL, 'IN_STORE', NULL, 6, 68.47, 6.85, 0.00, 6), +(35, '2026-01-16 22:49:00', 49.61, 'Cash', 9, 2, 37, 0, NULL, 'IN_STORE', NULL, 1, 49.61, 0.00, 0.00, 4), +(36, '2026-01-16 23:26:00', 196.32, 'Card', 14, 3, 38, 0, NULL, 'IN_STORE', NULL, 2, 218.13, 21.81, 0.00, 19), +(37, '2026-01-18 00:03:00', 47.92, 'Cash', 3, 1, 39, 0, NULL, 'IN_STORE', NULL, 1, 47.92, 0.00, 0.00, 4), +(38, '2026-01-18 00:40:00', 121.03, 'Card', 8, 2, 40, 0, NULL, 'IN_STORE', NULL, 3, 126.03, 5.00, 0.00, 12), +(39, '2026-01-19 01:17:00', 187.91, 'Card', 13, 3, 41, 0, NULL, 'IN_STORE', NULL, 1, 187.91, 0.00, 0.00, 18), +(40, '2026-01-19 01:54:00', 108.22, 'Cash', 6, 1, 42, 0, NULL, 'IN_STORE', NULL, 7, 122.98, 14.76, 0.00, 10), +(41, '2026-01-20 02:31:00', 67.71, 'Card', 7, 2, 43, 0, NULL, 'IN_STORE', NULL, 1, 67.71, 0.00, 0.00, 6), +(42, '2026-01-20 03:08:00', 114.93, 'Cash', 12, 3, 44, 0, NULL, 'IN_STORE', NULL, 4, 135.21, 20.28, 0.00, 11), +(43, '2026-01-21 03:45:00', 55.38, 'Card', 5, 1, 45, 0, NULL, 'IN_STORE', NULL, 1, 55.38, 0.00, 0.00, 5), +(44, '2026-01-21 04:22:00', 286.34, 'Card', 10, 2, 46, 0, NULL, 'IN_STORE', NULL, 1, 286.34, 0.00, 0.00, 28), +(45, '2026-01-22 04:59:00', 83.62, 'Cash', 11, 3, 47, 0, NULL, 'IN_STORE', NULL, 6, 92.91, 9.29, 0.00, 8), +(46, '2026-01-22 05:36:00', 29.89, 'Card', 4, 1, 48, 0, NULL, 'IN_STORE', NULL, 1, 29.89, 0.00, 0.00, 2), +(47, '2026-01-23 06:13:00', 161.48, 'Cash', 9, 2, 49, 0, NULL, 'IN_STORE', NULL, 2, 179.42, 17.94, 0.00, 16), +(48, '2026-01-23 06:50:00', 210.14, 'Card', 14, 3, 50, 0, NULL, 'IN_STORE', NULL, 1, 210.14, 0.00, 0.00, 21), +(49, '2026-01-24 07:27:00', 73.64, 'Card', 3, 1, 51, 0, NULL, 'IN_STORE', NULL, 3, 78.64, 5.00, 0.00, 7), +(50, '2026-01-24 08:04:00', 179.28, 'Cash', 8, 2, 52, 0, NULL, 'IN_STORE', NULL, 1, 179.28, 0.00, 0.00, 17), +(51, '2026-01-25 08:41:00', 101.67, 'Card', 13, 3, 53, 0, NULL, 'IN_STORE', NULL, 7, 115.53, 13.86, 0.00, 10), +(52, '2026-01-25 09:18:00', 21.31, 'Cash', 6, 1, 54, 0, NULL, 'IN_STORE', NULL, 1, 21.31, 0.00, 0.00, 2), +(53, '2026-01-26 09:55:00', 79.57, 'Card', 7, 2, 55, 0, NULL, 'IN_STORE', NULL, 4, 93.61, 14.04, 0.00, 7), +(54, '2026-01-26 10:32:00', 156.49, 'Card', 12, 3, 56, 0, NULL, 'IN_STORE', NULL, 1, 156.49, 0.00, 0.00, 15), +(55, '2026-01-27 11:09:00', 28.32, 'Cash', 5, 1, 57, 0, NULL, 'IN_STORE', NULL, 1, 28.32, 0.00, 0.00, 2), +(56, '2026-01-27 11:46:00', 175.47, 'Card', 10, 2, 58, 0, NULL, 'IN_STORE', NULL, 6, 194.97, 19.50, 0.00, 17), +(57, '2026-01-28 12:23:00', 150.60, 'Cash', 11, 3, 59, 0, NULL, 'IN_STORE', NULL, 1, 150.60, 0.00, 0.00, 15), +(58, '2026-01-28 13:00:00', 45.73, 'Card', 4, 1, 60, 0, NULL, 'IN_STORE', NULL, 2, 45.73, 0.00, 0.00, 4), +(59, '2026-01-29 13:37:00', 132.93, 'Card', 9, 2, 61, 0, NULL, 'IN_STORE', NULL, 1, 132.93, 0.00, 0.00, 13), +(60, '2026-01-29 14:14:00', 261.49, 'Cash', 14, 3, 62, 0, NULL, 'IN_STORE', NULL, 3, 266.49, 5.00, 0.00, 26), +(61, '2026-01-30 14:51:00', 57.02, 'Card', 3, 1, 63, 0, NULL, 'IN_STORE', NULL, 1, 57.02, 0.00, 0.00, 5), +(62, '2026-01-30 15:28:00', 90.64, 'Cash', 8, 2, 64, 0, NULL, 'IN_STORE', NULL, 7, 103.00, 12.36, 0.00, 9), +(63, '2026-01-31 16:05:00', 228.91, 'Card', 13, 3, 65, 0, NULL, 'IN_STORE', NULL, 1, 228.91, 0.00, 0.00, 22), +(64, '2026-01-31 16:42:00', 50.36, 'Card', 6, 1, 66, 0, NULL, 'IN_STORE', NULL, 4, 50.36, 0.00, 0.00, 5), +(65, '2026-02-01 17:19:00', 53.77, 'Cash', 7, 2, 67, 0, NULL, 'IN_STORE', NULL, 1, 53.77, 0.00, 0.00, 5), +(66, '2026-02-01 17:56:00', 172.92, 'Card', 12, 3, 68, 0, NULL, 'IN_STORE', NULL, 1, 172.92, 0.00, 0.00, 17), +(67, '2026-02-02 18:33:00', 154.78, 'Cash', 5, 1, 69, 0, NULL, 'IN_STORE', NULL, 6, 171.98, 17.20, 0.00, 15), +(68, '2026-02-02 19:10:00', 198.21, 'Card', 10, 2, 70, 0, NULL, 'IN_STORE', NULL, 1, 198.21, 0.00, 0.00, 19), +(69, '2026-02-03 19:47:00', 134.85, 'Card', 11, 3, 71, 0, NULL, 'IN_STORE', NULL, 2, 149.83, 14.98, 0.00, 13), +(70, '2026-02-03 20:24:00', 74.88, 'Cash', 4, 1, 72, 0, NULL, 'IN_STORE', NULL, 1, 74.88, 0.00, 0.00, 7), +(71, '2026-02-04 21:01:00', 27.77, 'Card', 9, 2, 73, 0, NULL, 'IN_STORE', NULL, 3, 32.77, 5.00, 0.00, 2), +(72, '2026-02-04 21:38:00', 105.22, 'Cash', 14, 3, 74, 0, NULL, 'IN_STORE', NULL, 1, 105.22, 0.00, 0.00, 10), +(73, '2026-02-05 22:15:00', 72.79, 'Card', 3, 1, 75, 0, NULL, 'IN_STORE', NULL, 7, 82.72, 9.93, 0.00, 7), +(74, '2026-02-05 22:52:00', 133.81, 'Card', 8, 2, 76, 0, NULL, 'IN_STORE', NULL, 1, 133.81, 0.00, 0.00, 13), +(75, '2026-02-06 23:29:00', 130.23, 'Cash', 13, 3, 77, 0, NULL, 'IN_STORE', NULL, 4, 153.21, 22.98, 0.00, 13), +(76, '2026-02-07 00:06:00', 25.27, 'Card', 6, 1, 78, 0, NULL, 'IN_STORE', NULL, 1, 25.27, 0.00, 0.00, 2), +(77, '2026-02-08 00:43:00', 58.96, 'Cash', 7, 2, 79, 0, NULL, 'IN_STORE', NULL, 1, 58.96, 0.00, 0.00, 5), +(78, '2026-02-08 01:20:00', 127.37, 'Card', 12, 3, 80, 0, NULL, 'IN_STORE', NULL, 6, 141.52, 14.15, 0.00, 12), +(79, '2026-02-09 01:57:00', 118.84, 'Card', 5, 1, 81, 0, NULL, 'IN_STORE', NULL, 1, 118.84, 0.00, 0.00, 11), +(80, '2026-02-09 02:34:00', 176.85, 'Cash', 10, 2, 82, 0, NULL, 'IN_STORE', NULL, 2, 196.50, 19.65, 0.00, 17), +(81, '2026-02-10 03:11:00', 367.69, 'Card', 11, 3, 83, 0, NULL, 'IN_STORE', NULL, 1, 367.69, 0.00, 0.00, 36), +(82, '2026-02-10 03:48:00', 52.62, 'Cash', 4, 1, 84, 0, NULL, 'IN_STORE', NULL, 3, 57.62, 5.00, 0.00, 5), +(83, '2026-02-11 04:25:00', 93.37, 'Card', 9, 2, 85, 0, NULL, 'IN_STORE', NULL, 1, 93.37, 0.00, 0.00, 9), +(84, '2026-02-11 05:02:00', 261.58, 'Card', 14, 3, 86, 0, NULL, 'IN_STORE', NULL, 7, 297.25, 35.67, 0.00, 26), +(85, '2026-02-12 05:39:00', 35.78, 'Cash', 3, 1, 87, 0, NULL, 'IN_STORE', NULL, 1, 35.78, 0.00, 0.00, 3), +(86, '2026-02-12 06:16:00', 116.44, 'Card', 8, 2, 88, 0, NULL, 'IN_STORE', NULL, 4, 136.99, 20.55, 0.00, 11), +(87, '2026-02-13 06:53:00', 305.52, 'Cash', 13, 3, 89, 0, NULL, 'IN_STORE', NULL, 1, 305.52, 0.00, 0.00, 30), +(88, '2026-02-13 07:30:00', 165.99, 'Card', 6, 1, 90, 0, NULL, 'IN_STORE', NULL, 1, 165.99, 0.00, 0.00, 16), +(89, '2026-02-14 08:07:00', 93.36, 'Card', 7, 2, 91, 0, NULL, 'IN_STORE', NULL, 6, 103.73, 10.37, 0.00, 9), +(90, '2026-02-14 08:44:00', 198.88, 'Cash', 12, 3, 92, 0, NULL, 'IN_STORE', NULL, 1, 198.88, 0.00, 0.00, 19), +(91, '2026-02-15 09:21:00', 25.28, 'Card', 5, 1, 93, 0, NULL, 'IN_STORE', NULL, 2, 25.28, 0.00, 0.00, 2), +(92, '2026-02-15 09:58:00', 58.51, 'Cash', 10, 2, 94, 0, NULL, 'IN_STORE', NULL, 1, 58.51, 0.00, 0.00, 5), +(93, '2026-02-16 10:35:00', 309.15, 'Card', 11, 3, 95, 0, NULL, 'IN_STORE', NULL, 3, 314.15, 5.00, 0.00, 30), +(94, '2026-02-16 11:12:00', 68.47, 'Card', 4, 1, 96, 0, NULL, 'IN_STORE', NULL, 1, 68.47, 0.00, 0.00, 6), +(95, '2026-02-17 11:49:00', 49.61, 'Cash', 9, 2, 97, 0, NULL, 'IN_STORE', NULL, 7, 49.61, 0.00, 0.00, 4), +(96, '2026-02-13 10:11:00', 34.80, 'Card', 3, 1, 3, 1, 1, 'IN_STORE', NULL, 1, 34.80, 0.00, 0.00, 0), +(97, '2026-02-15 10:22:00', 88.32, 'Card', 4, 1, 4, 1, 2, 'IN_STORE', NULL, 1, 88.32, 0.00, 0.00, 0), +(98, '2026-02-17 10:33:00', 49.05, 'Card', 5, 1, 5, 1, 3, 'IN_STORE', NULL, 1, 49.05, 0.00, 0.00, 0), +(99, '2026-02-19 10:44:00', 15.25, 'Card', 6, 1, 6, 1, 4, 'IN_STORE', NULL, 1, 15.25, 0.00, 0.00, 0), +(100, '2026-02-21 10:55:00', 181.42, 'Card', 7, 2, 7, 1, 5, 'IN_STORE', NULL, 1, 181.42, 0.00, 0.00, 0), +(101, '2026-02-23 11:06:00', 130.82, 'Card', 8, 2, 8, 1, 6, 'IN_STORE', NULL, 1, 130.82, 0.00, 0.00, 0), +(102, '2026-02-25 11:17:00', 50.37, 'Card', 9, 2, 9, 1, 7, 'IN_STORE', NULL, 1, 50.37, 0.00, 0.00, 0), +(103, '2026-02-27 11:28:00', 74.13, 'Card', 10, 2, 10, 1, 8, 'IN_STORE', NULL, 1, 74.13, 0.00, 0.00, 0), +(104, '2026-03-01 11:39:00', 68.78, 'Card', 11, 3, 11, 1, 9, 'IN_STORE', NULL, 1, 68.78, 0.00, 0.00, 0), +(105, '2026-03-03 11:50:00', 17.89, 'Card', 12, 3, 12, 1, 10, 'IN_STORE', NULL, 1, 17.89, 0.00, 0.00, 0), +(106, '2026-03-05 12:01:00', 63.09, 'Card', 13, 3, 13, 1, 11, 'IN_STORE', NULL, 1, 63.09, 0.00, 0.00, 0), +(107, '2026-03-07 12:12:00', 149.99, 'Card', 14, 3, 14, 1, 12, 'IN_STORE', NULL, 1, 149.99, 0.00, 0.00, 0), +(108, '2026-01-28 09:15:00', 41.36, 'Card', 3, 1, 15, 1, 13, 'IN_STORE', NULL, 1, 41.36, 0.00, 0.00, 0), +(109, '2026-01-29 09:52:00', 68.47, 'Card', 8, 2, 16, 1, 14, 'IN_STORE', NULL, 1, 68.47, 0.00, 0.00, 0), +(110, '2026-01-31 10:29:00', 14.16, 'Card', 13, 3, 17, 1, 15, 'IN_STORE', NULL, 1, 14.16, 0.00, 0.00, 0); + +INSERT INTO saleItem (saleItemId, saleId, prodId, quantity, unitPrice) VALUES +(1, 1, 1, 1, 25.09), +(2, 1, 12, 2, 9.71), +(3, 2, 8, 2, 63.05), +(4, 2, 19, 3, 25.27), +(5, 2, 30, 1, 50.09), +(6, 3, 15, 3, 16.38), +(7, 3, 26, 1, 32.67), +(8, 3, 37, 2, 97.56), +(9, 3, 48, 3, 51.80), +(10, 4, 22, 1, 15.25), +(11, 4, 33, 2, 46.71), +(12, 5, 29, 2, 45.73), +(13, 5, 40, 3, 135.69), +(14, 5, 51, 1, 14.09), +(15, 6, 36, 3, 84.85), +(16, 6, 47, 1, 45.97), +(17, 6, 58, 2, 45.82), +(18, 6, 69, 3, 29.89), +(19, 7, 43, 1, 22.68), +(20, 7, 54, 2, 27.69), +(21, 8, 50, 2, 63.44), +(22, 8, 61, 3, 10.69), +(23, 8, 72, 1, 53.99), +(24, 9, 57, 3, 41.29), +(25, 9, 68, 1, 27.49), +(26, 9, 79, 2, 165.99), +(27, 9, 90, 3, 81.99), +(28, 10, 64, 1, 17.89), +(29, 10, 75, 2, 101.99), +(30, 11, 71, 2, 37.99), +(31, 11, 82, 3, 25.10), +(32, 11, 93, 1, 10.91), +(33, 12, 78, 3, 149.99), +(34, 12, 89, 1, 74.88), +(35, 12, 100, 2, 23.04), +(36, 12, 11, 3, 7.49), +(37, 13, 4, 2, 41.36), +(38, 14, 9, 1, 68.47), +(39, 14, 26, 2, 32.67), +(40, 15, 14, 2, 14.16), +(41, 15, 31, 1, 21.29), +(42, 15, 48, 2, 51.80), +(43, 16, 19, 1, 25.27), +(44, 17, 24, 2, 23.96), +(45, 17, 41, 1, 11.04), +(46, 18, 29, 1, 45.73), +(47, 18, 46, 2, 40.15), +(48, 18, 63, 1, 15.49), +(49, 19, 34, 2, 59.42), +(50, 20, 39, 1, 122.98), +(51, 20, 56, 2, 36.76), +(52, 21, 44, 2, 28.51), +(53, 21, 61, 1, 10.69), +(54, 21, 78, 2, 149.99), +(55, 22, 49, 1, 57.62), +(56, 23, 54, 2, 27.69), +(57, 23, 71, 1, 37.99), +(58, 24, 59, 1, 50.36), +(59, 24, 76, 2, 117.99), +(60, 24, 93, 1, 10.91), +(61, 25, 64, 2, 17.89), +(62, 26, 69, 1, 29.89), +(63, 26, 86, 2, 53.55), +(64, 27, 74, 2, 85.99), +(65, 27, 91, 1, 7.44), +(66, 27, 8, 2, 63.05), +(67, 28, 79, 1, 165.99), +(68, 29, 84, 2, 39.32), +(69, 29, 1, 1, 25.09), +(70, 30, 89, 1, 74.88), +(71, 30, 6, 2, 52.20), +(72, 30, 23, 1, 19.60), +(73, 31, 94, 2, 12.64), +(74, 32, 99, 1, 21.31), +(75, 32, 16, 2, 18.60), +(76, 33, 4, 2, 41.36), +(77, 33, 21, 1, 10.89), +(78, 33, 38, 2, 110.27), +(79, 34, 9, 1, 68.47), +(80, 35, 14, 2, 14.16), +(81, 35, 31, 1, 21.29), +(82, 36, 19, 1, 25.27), +(83, 36, 36, 2, 84.85), +(84, 36, 53, 1, 23.16), +(85, 37, 24, 2, 23.96), +(86, 38, 29, 1, 45.73), +(87, 38, 46, 2, 40.15), +(88, 39, 34, 2, 59.42), +(89, 39, 51, 1, 14.09), +(90, 39, 68, 2, 27.49), +(91, 40, 39, 1, 122.98), +(92, 41, 44, 2, 28.51), +(93, 41, 61, 1, 10.69), +(94, 42, 49, 1, 57.62), +(95, 42, 66, 2, 22.69), +(96, 42, 83, 1, 32.21), +(97, 43, 54, 2, 27.69), +(98, 44, 59, 1, 50.36), +(99, 44, 76, 2, 117.99), +(100, 45, 64, 2, 17.89), +(101, 45, 81, 1, 17.99), +(102, 45, 98, 2, 19.57), +(103, 46, 69, 1, 29.89), +(104, 47, 74, 2, 85.99), +(105, 47, 91, 1, 7.44), +(106, 48, 79, 1, 165.99), +(107, 48, 96, 2, 16.11), +(108, 48, 13, 1, 11.93), +(109, 49, 84, 2, 39.32), +(110, 50, 89, 1, 74.88), +(111, 50, 6, 2, 52.20), +(112, 51, 94, 2, 12.64), +(113, 51, 11, 1, 7.49), +(114, 51, 28, 2, 41.38), +(115, 52, 99, 1, 21.31), +(116, 53, 4, 2, 41.36), +(117, 53, 21, 1, 10.89), +(118, 54, 9, 1, 68.47), +(119, 54, 26, 2, 32.67), +(120, 54, 43, 1, 22.68), +(121, 55, 14, 2, 14.16), +(122, 56, 19, 1, 25.27), +(123, 56, 36, 2, 84.85), +(124, 57, 24, 2, 23.96), +(125, 57, 41, 1, 11.04), +(126, 57, 58, 2, 45.82), +(127, 58, 29, 1, 45.73), +(128, 59, 34, 2, 59.42), +(129, 59, 51, 1, 14.09), +(130, 60, 39, 1, 122.98), +(131, 60, 56, 2, 36.76), +(132, 60, 73, 1, 69.99), +(133, 61, 44, 2, 28.51), +(134, 62, 49, 1, 57.62), +(135, 62, 66, 2, 22.69), +(136, 63, 54, 2, 27.69), +(137, 63, 71, 1, 37.99), +(138, 63, 88, 2, 67.77), +(139, 64, 59, 1, 50.36), +(140, 65, 64, 2, 17.89), +(141, 65, 81, 1, 17.99), +(142, 66, 69, 1, 29.89), +(143, 66, 86, 2, 53.55), +(144, 66, 3, 1, 35.93), +(145, 67, 74, 2, 85.99), +(146, 68, 79, 1, 165.99), +(147, 68, 96, 2, 16.11), +(148, 69, 84, 2, 39.32), +(149, 69, 1, 1, 25.09), +(150, 69, 18, 2, 23.05), +(151, 70, 89, 1, 74.88), +(152, 71, 94, 2, 12.64), +(153, 71, 11, 1, 7.49), +(154, 72, 99, 1, 21.31), +(155, 72, 16, 2, 18.60), +(156, 72, 33, 1, 46.71), +(157, 73, 4, 2, 41.36), +(158, 74, 9, 1, 68.47), +(159, 74, 26, 2, 32.67), +(160, 75, 14, 2, 14.16), +(161, 75, 31, 1, 21.29), +(162, 75, 48, 2, 51.80), +(163, 76, 19, 1, 25.27), +(164, 77, 24, 2, 23.96), +(165, 77, 41, 1, 11.04), +(166, 78, 29, 1, 45.73), +(167, 78, 46, 2, 40.15), +(168, 78, 63, 1, 15.49), +(169, 79, 34, 2, 59.42), +(170, 80, 39, 1, 122.98), +(171, 80, 56, 2, 36.76), +(172, 81, 44, 2, 28.51), +(173, 81, 61, 1, 10.69), +(174, 81, 78, 2, 149.99), +(175, 82, 49, 1, 57.62), +(176, 83, 54, 2, 27.69), +(177, 83, 71, 1, 37.99), +(178, 84, 59, 1, 50.36), +(179, 84, 76, 2, 117.99), +(180, 84, 93, 1, 10.91), +(181, 85, 64, 2, 17.89), +(182, 86, 69, 1, 29.89), +(183, 86, 86, 2, 53.55), +(184, 87, 74, 2, 85.99), +(185, 87, 91, 1, 7.44), +(186, 87, 8, 2, 63.05), +(187, 88, 79, 1, 165.99), +(188, 89, 84, 2, 39.32), +(189, 89, 1, 1, 25.09), +(190, 90, 89, 1, 74.88), +(191, 90, 6, 2, 52.20), +(192, 90, 23, 1, 19.60), +(193, 91, 94, 2, 12.64), +(194, 92, 99, 1, 21.31), +(195, 92, 16, 2, 18.60), +(196, 93, 4, 2, 41.36), +(197, 93, 21, 1, 10.89), +(198, 93, 38, 2, 110.27), +(199, 94, 9, 1, 68.47), +(200, 95, 14, 2, 14.16), +(201, 95, 31, 1, 21.29), +(202, 96, 1, 1, 25.09), +(203, 96, 12, 1, 9.71), +(204, 97, 8, 1, 63.05), +(205, 97, 19, 1, 25.27), +(206, 98, 15, 1, 16.38), +(207, 98, 26, 1, 32.67), +(208, 99, 22, 1, 15.25), +(209, 100, 29, 1, 45.73), +(210, 100, 40, 1, 135.69), +(211, 101, 36, 1, 84.85), +(212, 101, 47, 1, 45.97), +(213, 102, 43, 1, 22.68), +(214, 102, 54, 1, 27.69), +(215, 103, 50, 1, 63.44), +(216, 103, 61, 1, 10.69), +(217, 104, 57, 1, 41.29), +(218, 104, 68, 1, 27.49), +(219, 105, 64, 1, 17.89), +(220, 106, 71, 1, 37.99), +(221, 106, 82, 1, 25.10), +(222, 107, 78, 1, 149.99), +(223, 108, 4, 1, 41.36), +(224, 109, 9, 1, 68.47), +(225, 110, 14, 1, 14.16); + +INSERT INTO refund (id, saleId, customerId, amount, reason, status) VALUES +(1, 1, 3, 34.80, 'Product was unsuitable after purchase.', 'APPROVED'), +(2, 2, 4, 88.32, 'Duplicate item purchased in error.', 'APPROVED'), +(3, 3, 5, 49.05, 'Pet outgrew the item sooner than expected.', 'APPROVED'), +(4, 4, 6, 15.25, 'Food sensitivity required a different formula.', 'APPROVED'), +(5, 5, 7, 181.42, 'Customer reported damaged packaging.', 'APPROVED'), +(6, 6, 8, 130.82, 'Product was unsuitable after purchase.', 'APPROVED'), +(7, 7, 9, 50.37, 'Duplicate item purchased in error.', 'APPROVED'), +(8, 8, 10, 74.13, 'Pet outgrew the item sooner than expected.', 'APPROVED'), +(9, 9, 11, 68.78, 'Food sensitivity required a different formula.', 'APPROVED'), +(10, 10, 12, 17.89, 'Customer reported damaged packaging.', 'APPROVED'), +(11, 11, 13, 63.09, 'Product was unsuitable after purchase.', 'APPROVED'), +(12, 12, 14, 149.99, 'Duplicate item purchased in error.', 'APPROVED'), +(13, 13, 15, 41.36, 'Pet outgrew the item sooner than expected.', 'APPROVED'), +(14, 14, 16, 68.47, 'Food sensitivity required a different formula.', 'APPROVED'), +(15, 15, 17, 14.16, 'Customer reported damaged packaging.', 'APPROVED'); + +INSERT INTO refund_item (id, refund_id, prod_id, quantity, unit_price) VALUES +(1, 1, 1, 1, 25.09), +(2, 1, 12, 1, 9.71), +(3, 2, 8, 1, 63.05), +(4, 2, 19, 1, 25.27), +(5, 3, 15, 1, 16.38), +(6, 3, 26, 1, 32.67), +(7, 4, 22, 1, 15.25), +(8, 5, 29, 1, 45.73), +(9, 5, 40, 1, 135.69), +(10, 6, 36, 1, 84.85), +(11, 6, 47, 1, 45.97), +(12, 7, 43, 1, 22.68), +(13, 7, 54, 1, 27.69), +(14, 8, 50, 1, 63.44), +(15, 8, 61, 1, 10.69), +(16, 9, 57, 1, 41.29), +(17, 9, 68, 1, 27.49), +(18, 10, 64, 1, 17.89), +(19, 11, 71, 1, 37.99), +(20, 11, 82, 1, 25.10), +(21, 12, 78, 1, 149.99), +(22, 13, 4, 1, 41.36), +(23, 14, 9, 1, 68.47), +(24, 15, 14, 1, 14.16); + +INSERT INTO conversation (id, customerId, staffId, status, mode, humanRequestedAt) VALUES +(1, 16, 3, 'CLOSED', 'AUTOMATED', NULL), +(2, 17, 4, 'OPEN', 'HUMAN', '2026-02-02 09:08:00'), +(3, 18, 5, 'OPEN', 'HUMAN', '2026-02-03 09:08:00'), +(4, 19, 6, 'OPEN', 'AUTOMATED', NULL), +(5, 20, 7, 'CLOSED', 'HUMAN', '2026-02-05 09:08:00'), +(6, 21, 8, 'OPEN', 'HUMAN', '2026-02-06 09:08:00'), +(7, 22, 9, 'OPEN', 'AUTOMATED', NULL), +(8, 23, 10, 'OPEN', 'HUMAN', '2026-02-08 09:08:00'), +(9, 24, 11, 'CLOSED', 'HUMAN', '2026-02-09 09:08:00'), +(10, 25, 12, 'OPEN', 'AUTOMATED', NULL), +(11, 26, 13, 'OPEN', 'HUMAN', '2026-02-11 09:08:00'), +(12, 27, 14, 'OPEN', 'HUMAN', '2026-02-12 09:08:00'), +(13, 28, 3, 'CLOSED', 'AUTOMATED', NULL), +(14, 29, 4, 'OPEN', 'HUMAN', '2026-02-14 09:08:00'), +(15, 30, 5, 'OPEN', 'HUMAN', '2026-02-15 09:08:00'), +(16, 31, 6, 'OPEN', 'AUTOMATED', NULL), +(17, 32, 7, 'CLOSED', 'HUMAN', '2026-02-17 09:08:00'), +(18, 33, 8, 'OPEN', 'HUMAN', '2026-02-18 09:08:00'), +(19, 34, 9, 'OPEN', 'AUTOMATED', NULL), +(20, 35, 10, 'OPEN', 'HUMAN', '2026-02-20 09:08:00'), +(21, 36, 11, 'CLOSED', 'HUMAN', '2026-02-21 09:08:00'), +(22, 37, 12, 'OPEN', 'AUTOMATED', NULL), +(23, 38, 13, 'OPEN', 'HUMAN', '2026-02-23 09:08:00'), +(24, 39, 14, 'OPEN', 'HUMAN', '2026-02-24 09:08:00'), +(25, 40, 3, 'CLOSED', 'AUTOMATED', NULL), +(26, 41, 4, 'OPEN', 'HUMAN', '2026-02-26 09:08:00'), +(27, 42, 5, 'OPEN', 'HUMAN', '2026-02-27 09:08:00'), +(28, 43, 6, 'OPEN', 'AUTOMATED', NULL), +(29, 44, 7, 'CLOSED', 'HUMAN', '2026-03-01 09:08:00'), +(30, 45, 8, 'OPEN', 'HUMAN', '2026-03-02 09:08:00'); + +INSERT INTO message (id, conversationId, senderId, content, attachmentUrl, attachmentName, attachmentMimeType, attachmentSizeBytes, timestamp, isRead) VALUES +(1, 1, 16, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-01 09:00:00', 1), +(2, 1, 3, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-01 09:05:00', 1), +(3, 1, 16, 'Order #1001 is the one I meant, and the pet is Bruno.', 'https://files.petshop.local/chat/001-2.pdf', 'order-note-001.pdf', 'application/pdf', 145000, '2026-02-01 09:10:00', 1), +(4, 1, 3, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-01 09:15:00', 0), +(5, 2, 17, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-02 09:00:00', 1), +(6, 2, 4, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-02 09:05:00', 1), +(7, 2, 17, 'Order #1002 is the one I meant, and the pet is Snowball.', NULL, NULL, NULL, NULL, '2026-02-02 09:10:00', 1), +(8, 2, 4, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-02 09:15:00', 0), +(9, 3, 18, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-03 09:00:00', 1), +(10, 3, 5, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-03 09:05:00', 1), +(11, 3, 18, 'Order #1003 is the one I meant, and the pet is Zeus.', NULL, NULL, NULL, NULL, '2026-02-03 09:10:00', 1), +(12, 3, 5, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-03 09:15:00', 0), +(13, 4, 19, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-04 09:00:00', 1), +(14, 4, 6, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-04 09:05:00', 1), +(15, 4, 19, 'Order #1004 is the one I meant, and the pet is Biscuit.', NULL, NULL, NULL, NULL, '2026-02-04 09:10:00', 1), +(16, 4, 6, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-04 09:15:00', 0), +(17, 5, 20, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-05 09:00:00', 1), +(18, 5, 7, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-05 09:05:00', 1), +(19, 5, 20, 'Order #1005 is the one I meant, and the pet is Patches.', NULL, NULL, NULL, NULL, '2026-02-05 09:10:00', 1), +(20, 5, 7, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-05 09:15:00', 0), +(21, 6, 21, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-06 09:00:00', 1), +(22, 6, 8, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-06 09:05:00', 1), +(23, 6, 21, 'Order #1006 is the one I meant, and the pet is Scout.', 'https://files.petshop.local/chat/006-2.pdf', 'order-note-006.pdf', 'application/pdf', 145500, '2026-02-06 09:10:00', 1), +(24, 6, 8, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-06 09:15:00', 0), +(25, 7, 22, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-07 09:00:00', 1), +(26, 7, 9, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-07 09:05:00', 1), +(27, 7, 22, 'Order #1007 is the one I meant, and the pet is Mittens.', NULL, NULL, NULL, NULL, '2026-02-07 09:10:00', 1), +(28, 7, 9, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-07 09:15:00', 0), +(29, 8, 23, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-08 09:00:00', 1), +(30, 8, 10, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-08 09:05:00', 1), +(31, 8, 23, 'Order #1008 is the one I meant, and the pet is Thor.', NULL, NULL, NULL, NULL, '2026-02-08 09:10:00', 1), +(32, 8, 10, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-08 09:15:00', 0), +(33, 9, 24, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-09 09:00:00', 1), +(34, 9, 11, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-09 09:05:00', 1), +(35, 9, 24, 'Order #1009 is the one I meant, and the pet is Whiskers.', NULL, NULL, NULL, NULL, '2026-02-09 09:10:00', 1), +(36, 9, 11, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-09 09:15:00', 0), +(37, 10, 25, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-10 09:00:00', 1), +(38, 10, 12, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-10 09:05:00', 1), +(39, 10, 25, 'Order #1010 is the one I meant, and the pet is Goldie.', NULL, NULL, NULL, NULL, '2026-02-10 09:10:00', 1), +(40, 10, 12, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-10 09:15:00', 0), +(41, 11, 26, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-11 09:00:00', 1), +(42, 11, 13, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-11 09:05:00', 1), +(43, 11, 26, 'Order #1011 is the one I meant, and the pet is Midnight.', 'https://files.petshop.local/chat/011-2.pdf', 'order-note-011.pdf', 'application/pdf', 146000, '2026-02-11 09:10:00', 1), +(44, 11, 13, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-11 09:15:00', 0), +(45, 12, 27, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-12 09:00:00', 1), +(46, 12, 14, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-12 09:05:00', 1), +(47, 12, 27, 'Order #1012 is the one I meant, and the pet is Storm.', NULL, NULL, NULL, NULL, '2026-02-12 09:10:00', 1), +(48, 12, 14, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-12 09:15:00', 0), +(49, 13, 28, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-13 09:00:00', 1), +(50, 13, 3, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-13 09:05:00', 1), +(51, 13, 28, 'Order #1013 is the one I meant, and the pet is Peanut.', NULL, NULL, NULL, NULL, '2026-02-13 09:10:00', 1), +(52, 13, 3, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-13 09:15:00', 0), +(53, 14, 29, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-14 09:00:00', 1), +(54, 14, 4, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-14 09:05:00', 1), +(55, 14, 29, 'Order #1014 is the one I meant, and the pet is Daisy.', NULL, NULL, NULL, NULL, '2026-02-14 09:10:00', 1), +(56, 14, 4, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-14 09:15:00', 0), +(57, 15, 30, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-15 09:00:00', 1), +(58, 15, 5, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-15 09:05:00', 1), +(59, 15, 30, 'Order #1015 is the one I meant, and the pet is Cleo.', NULL, NULL, NULL, NULL, '2026-02-15 09:10:00', 1), +(60, 15, 5, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-15 09:15:00', 0), +(61, 16, 31, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-16 09:00:00', 1), +(62, 16, 6, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-16 09:05:00', 1), +(63, 16, 31, 'Order #1016 is the one I meant, and the pet is Sunny.', 'https://files.petshop.local/chat/016-2.pdf', 'order-note-016.pdf', 'application/pdf', 146500, '2026-02-16 09:10:00', 1), +(64, 16, 6, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-16 09:15:00', 0), +(65, 17, 32, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-17 09:00:00', 1), +(66, 17, 7, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-17 09:05:00', 1), +(67, 17, 32, 'Order #1017 is the one I meant, and the pet is Maple.', NULL, NULL, NULL, NULL, '2026-02-17 09:10:00', 1), +(68, 17, 7, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-17 09:15:00', 0), +(69, 18, 33, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-18 09:00:00', 1), +(70, 18, 8, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-18 09:05:00', 1), +(71, 18, 33, 'Order #1018 is the one I meant, and the pet is Nova.', NULL, NULL, NULL, NULL, '2026-02-18 09:10:00', 1), +(72, 18, 8, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-18 09:15:00', 0), +(73, 19, 34, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-19 09:00:00', 1), +(74, 19, 9, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-19 09:05:00', 1), +(75, 19, 34, 'Order #1019 is the one I meant, and the pet is Piper.', NULL, NULL, NULL, NULL, '2026-02-19 09:10:00', 1), +(76, 19, 9, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-19 09:15:00', 0), +(77, 20, 35, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-20 09:00:00', 1), +(78, 20, 10, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-20 09:05:00', 1), +(79, 20, 35, 'Order #1020 is the one I meant, and the pet is Hazel.', NULL, NULL, NULL, NULL, '2026-02-20 09:10:00', 1), +(80, 20, 10, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-20 09:15:00', 0), +(81, 21, 36, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-21 09:00:00', 1), +(82, 21, 11, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-21 09:05:00', 1), +(83, 21, 36, 'Order #1021 is the one I meant, and the pet is Jasper.', 'https://files.petshop.local/chat/021-2.pdf', 'order-note-021.pdf', 'application/pdf', 147000, '2026-02-21 09:10:00', 1), +(84, 21, 11, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-21 09:15:00', 0), +(85, 22, 37, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-22 09:00:00', 1), +(86, 22, 12, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-22 09:05:00', 1), +(87, 22, 37, 'Order #1022 is the one I meant, and the pet is Remy.', NULL, NULL, NULL, NULL, '2026-02-22 09:10:00', 1), +(88, 22, 12, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-22 09:15:00', 0), +(89, 23, 38, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-23 09:00:00', 1), +(90, 23, 13, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-23 09:05:00', 1), +(91, 23, 38, 'Order #1023 is the one I meant, and the pet is Archie.', NULL, NULL, NULL, NULL, '2026-02-23 09:10:00', 1), +(92, 23, 13, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-23 09:15:00', 0), +(93, 24, 39, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-24 09:00:00', 1), +(94, 24, 14, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-24 09:05:00', 1), +(95, 24, 39, 'Order #1024 is the one I meant, and the pet is Skye.', NULL, NULL, NULL, NULL, '2026-02-24 09:10:00', 1), +(96, 24, 14, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-24 09:15:00', 0), +(97, 25, 40, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-25 09:00:00', 1), +(98, 25, 3, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-25 09:05:00', 1), +(99, 25, 40, 'Order #1025 is the one I meant, and the pet is Otis.', NULL, NULL, NULL, NULL, '2026-02-25 09:10:00', 1), +(100, 25, 3, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-25 09:15:00', 0), +(101, 26, 41, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-26 09:00:00', 1), +(102, 26, 4, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-26 09:05:00', 1), +(103, 26, 41, 'Order #1026 is the one I meant, and the pet is Marley.', 'https://files.petshop.local/chat/026-2.pdf', 'order-note-026.pdf', 'application/pdf', 147500, '2026-02-26 09:10:00', 1), +(104, 26, 4, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-26 09:15:00', 0), +(105, 27, 42, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-27 09:00:00', 1), +(106, 27, 5, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-27 09:05:00', 1), +(107, 27, 42, 'Order #1027 is the one I meant, and the pet is Blue.', NULL, NULL, NULL, NULL, '2026-02-27 09:10:00', 1), +(108, 27, 5, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-27 09:15:00', 0), +(109, 28, 43, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-02-28 09:00:00', 1), +(110, 28, 6, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-02-28 09:05:00', 1), +(111, 28, 43, 'Order #1028 is the one I meant, and the pet is Honey.', NULL, NULL, NULL, NULL, '2026-02-28 09:10:00', 1), +(112, 28, 6, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-02-28 09:15:00', 0), +(113, 29, 44, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-03-01 09:00:00', 1), +(114, 29, 7, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-03-01 09:05:00', 1), +(115, 29, 44, 'Order #1029 is the one I meant, and the pet is Mochi.', NULL, NULL, NULL, NULL, '2026-03-01 09:10:00', 1), +(116, 29, 7, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-03-01 09:15:00', 0), +(117, 30, 45, 'Hi, I need help with a recent order and a pet care question.', NULL, NULL, NULL, NULL, '2026-03-02 09:00:00', 1), +(118, 30, 8, 'Happy to help. Please share the order number or the pet name involved.', NULL, NULL, NULL, NULL, '2026-03-02 09:05:00', 1), +(119, 30, 45, 'Order #1030 is the one I meant, and the pet is Kiki.', NULL, NULL, NULL, NULL, '2026-03-02 09:10:00', 1), +(120, 30, 8, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-03-02 09:15:00', 0); + +INSERT INTO activityLog (logId, userId, storeId, usernameSnapshot, fullNameSnapshot, roleSnapshot, storeNameSnapshot, activity, logTimestamp) VALUES +(1, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-03 08:00:00'), +(2, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-03 17:00:00'), +(3, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-04 02:00:00'), +(4, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-04 11:00:00'), +(5, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-04 20:00:00'), +(6, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-05 05:00:00'), +(7, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-01-05 14:00:00'), +(8, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-05 23:00:00'), +(9, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-01-06 08:00:00'), +(10, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-06 17:00:00'), +(11, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-01-07 02:00:00'), +(12, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-01-07 11:00:00'), +(13, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-01-07 20:00:00'), +(14, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-01-08 05:00:00'), +(15, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-08 14:00:00'), +(16, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-08 23:00:00'), +(17, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-09 08:00:00'), +(18, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-01-09 17:00:00'), +(19, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-10 02:00:00'), +(20, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-10 11:00:00'), +(21, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-01-10 20:00:00'), +(22, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-11 05:00:00'), +(23, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-01-11 14:00:00'), +(24, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-11 23:00:00'), +(25, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-01-12 08:00:00'), +(26, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-01-12 17:00:00'), +(27, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-01-13 02:00:00'), +(28, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-01-13 11:00:00'), +(29, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-13 20:00:00'), +(30, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-14 05:00:00'), +(31, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-14 14:00:00'), +(32, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-01-14 23:00:00'), +(33, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-15 08:00:00'), +(34, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-01-15 17:00:00'), +(35, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-01-16 02:00:00'), +(36, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-01-16 11:00:00'), +(37, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-01-16 20:00:00'), +(38, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-17 05:00:00'), +(39, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-01-17 14:00:00'), +(40, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-01-17 23:00:00'), +(41, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-01-18 08:00:00'), +(42, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-01-18 17:00:00'), +(43, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-19 02:00:00'), +(44, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Completed a grooming appointment handoff.', '2026-01-19 11:00:00'), +(45, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-19 20:00:00'), +(46, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-20 05:00:00'), +(47, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-20 14:00:00'), +(48, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-01-20 23:00:00'), +(49, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-01-21 08:00:00'), +(50, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-21 17:00:00'), +(51, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-01-22 02:00:00'), +(52, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-01-22 11:00:00'), +(53, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-01-22 20:00:00'), +(54, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-01-23 05:00:00'), +(55, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-01-23 14:00:00'), +(56, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-01-23 23:00:00'), +(57, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-24 08:00:00'), +(58, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-24 17:00:00'), +(59, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-25 02:00:00'), +(60, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-25 11:00:00'), +(61, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-25 20:00:00'), +(62, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-26 05:00:00'), +(63, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-01-26 14:00:00'), +(64, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-26 23:00:00'), +(65, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-01-27 08:00:00'), +(66, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-27 17:00:00'), +(67, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-01-28 02:00:00'), +(68, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-01-28 11:00:00'), +(69, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-01-28 20:00:00'), +(70, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-01-29 05:00:00'), +(71, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-29 14:00:00'), +(72, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-29 23:00:00'), +(73, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-30 08:00:00'), +(74, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-01-30 17:00:00'), +(75, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-31 02:00:00'), +(76, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-31 11:00:00'), +(77, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-01-31 20:00:00'), +(78, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-01 05:00:00'), +(79, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-02-01 14:00:00'), +(80, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-02-01 23:00:00'), +(81, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-02-02 08:00:00'), +(82, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-02-02 17:00:00'), +(83, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-02-03 02:00:00'), +(84, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-02-03 11:00:00'), +(85, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Checked a pending adoption record.', '2026-02-03 20:00:00'), +(86, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-04 05:00:00'), +(87, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-02-04 14:00:00'), +(88, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-02-04 23:00:00'), +(89, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-02-05 08:00:00'), +(90, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-02-05 17:00:00'), +(91, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-02-06 02:00:00'), +(92, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-02-06 11:00:00'), +(93, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-02-06 20:00:00'), +(94, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-07 05:00:00'), +(95, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-02-07 14:00:00'), +(96, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-02-07 23:00:00'), +(97, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-02-08 08:00:00'), +(98, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-02-08 17:00:00'), +(99, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Updated a pet availability record.', '2026-02-09 02:00:00'), +(100, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Completed a grooming appointment handoff.', '2026-02-09 11:00:00'), +(101, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-02-09 20:00:00'), +(102, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-10 05:00:00'), +(103, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-02-10 14:00:00'), +(104, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-02-10 23:00:00'), +(105, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-02-11 08:00:00'), +(106, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-02-11 17:00:00'), +(107, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-02-12 02:00:00'), +(108, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-02-12 11:00:00'), +(109, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-02-12 20:00:00'), +(110, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-02-13 05:00:00'), +(111, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-02-13 14:00:00'), +(112, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-02-13 23:00:00'), +(113, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-02-14 08:00:00'), +(114, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Approved a purchase transaction at the register.', '2026-02-14 17:00:00'), +(115, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-02-15 02:00:00'), +(116, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-02-15 11:00:00'), +(117, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-02-15 20:00:00'), +(118, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-16 05:00:00'), +(119, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-02-16 14:00:00'), +(120, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-02-16 23:00:00'); diff --git a/backend/src/main/resources/db/migration/V7__normalize_seed_data.sql b/backend/src/main/resources/db/migration/V7__normalize_seed_data.sql new file mode 100644 index 00000000..6e5a5519 --- /dev/null +++ b/backend/src/main/resources/db/migration/V7__normalize_seed_data.sql @@ -0,0 +1,487 @@ +INSERT INTO users (username, password, email, firstName, lastName, fullName, phone, avatarUrl, role, staffRole, primaryStoreId, loyaltyPoints, active, tokenVersion) +SELECT 'ai.bot', + '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', + 'bot@petshop.com', + 'AI', + 'Bot', + 'AI Bot', + '000-000-0000', + 'https://images.petshop.local/users/bot.webp', + 'STAFF', + 'CUSTOMER_SERVICE', + NULL, + 0, + 1, + 0 +FROM DUAL +WHERE NOT EXISTS ( + SELECT 1 + FROM users + WHERE username = 'ai.bot' +); + +UPDATE users +SET + username = CASE id + WHEN 15 THEN 'customer' + WHEN 16 THEN 'maya.brown' + WHEN 17 THEN 'noah.clark' + WHEN 18 THEN 'avery.wilson' + WHEN 19 THEN 'leah.martinez' + WHEN 20 THEN 'julian.anderson' + WHEN 21 THEN 'zoe.taylor' + WHEN 22 THEN 'ethan.parker' + WHEN 23 THEN 'ruby.evans' + WHEN 24 THEN 'caleb.scott' + WHEN 25 THEN 'ivy.adams' + WHEN 26 THEN 'isaac.baker' + WHEN 27 THEN 'hannah.hall' + WHEN 28 THEN 'mason.rivera' + WHEN 29 THEN 'aria.mitchell' + WHEN 30 THEN 'wyatt.collins' + WHEN 31 THEN 'elena.morris' + WHEN 32 THEN 'leo.cook' + WHEN 33 THEN 'grace.bell' + WHEN 34 THEN 'hudson.reed' + WHEN 35 THEN 'claire.murphy' + WHEN 36 THEN 'omar.bailey' + WHEN 37 THEN 'naomi.cooper' + WHEN 38 THEN 'jasper.richardson' + WHEN 39 THEN 'sofia.cox' + WHEN 40 THEN 'miles.howard' + WHEN 41 THEN 'audrey.ward' + WHEN 42 THEN 'nathan.torres' + WHEN 43 THEN 'jade.peterson' + WHEN 44 THEN 'rowan.gray' + WHEN 45 THEN 'lila.ramirez' + WHEN 46 THEN 'eli.james' + WHEN 47 THEN 'violet.watson' + WHEN 48 THEN 'gavin.brooks' + WHEN 49 THEN 'stella.kelly' + WHEN 50 THEN 'adrian.sanders' + WHEN 51 THEN 'hazel.price' + WHEN 52 THEN 'connor.bennett' + WHEN 53 THEN 'sadie.wood' + WHEN 54 THEN 'xavier.barnes' + WHEN 55 THEN 'alice.ross' + WHEN 56 THEN 'roman.henderson' + WHEN 57 THEN 'lucy.coleman' + WHEN 58 THEN 'evan.jenkins' + WHEN 59 THEN 'mila.perry' + WHEN 60 THEN 'cole.powell' + WHEN 61 THEN 'nora.long' + WHEN 62 THEN 'adam.patterson' + WHEN 63 THEN 'layla.hughes' + WHEN 64 THEN 'blake.flores' + WHEN 65 THEN 'ellie.washington' + WHEN 66 THEN 'ryan.butler' + WHEN 67 THEN 'cora.simmons' + WHEN 68 THEN 'simon.foster' + WHEN 69 THEN 'piper.gonzales' + WHEN 70 THEN 'joel.bryant' + WHEN 71 THEN 'eva.alexander' + WHEN 72 THEN 'felix.russell' + WHEN 73 THEN 'maeve.griffin' + WHEN 74 THEN 'tristan.diaz' + WHEN 75 THEN 'ariana.hayes' + WHEN 76 THEN 'declan.myers' + WHEN 77 THEN 'brooke.ford' + WHEN 78 THEN 'micah.hamilton' + WHEN 79 THEN 'bianca.graham' + WHEN 80 THEN 'jonah.sullivan' + WHEN 81 THEN 'tessa.wallace' + WHEN 82 THEN 'damian.woods' + WHEN 83 THEN 'riley.cole' + WHEN 84 THEN 'kieran.west' + WHEN 85 THEN 'sienna.jordan' + WHEN 86 THEN 'finley.owens' + WHEN 87 THEN 'maren.reynolds' + WHEN 88 THEN 'asher.fisher' + WHEN 89 THEN 'daphne.ellis' + WHEN 90 THEN 'bennett.harrison' + WHEN 91 THEN 'selena.gibson' + WHEN 92 THEN 'emmett.mcdonald' + WHEN 93 THEN 'phoebe.cruz' + WHEN 94 THEN 'sawyer.marshall' + WHEN 95 THEN 'keira.ortiz' + WHEN 96 THEN 'landon.gomez' + WHEN 97 THEN 'rosalie.murray' + WHEN 98 THEN 'malik.freeman' + WHEN 99 THEN 'esme.wells' + WHEN 100 THEN 'holden.webb' + ELSE username + END, + email = CASE id + WHEN 15 THEN 'customer@petshop.com' + WHEN 16 THEN 'maya.brown@gmail.com' + WHEN 17 THEN 'noah.clark@gmail.com' + WHEN 18 THEN 'avery.wilson@gmail.com' + WHEN 19 THEN 'leah.martinez@gmail.com' + WHEN 20 THEN 'julian.anderson@gmail.com' + WHEN 21 THEN 'zoe.taylor@gmail.com' + WHEN 22 THEN 'ethan.parker@gmail.com' + WHEN 23 THEN 'ruby.evans@gmail.com' + WHEN 24 THEN 'caleb.scott@gmail.com' + WHEN 25 THEN 'ivy.adams@gmail.com' + WHEN 26 THEN 'isaac.baker@gmail.com' + WHEN 27 THEN 'hannah.hall@gmail.com' + WHEN 28 THEN 'mason.rivera@gmail.com' + WHEN 29 THEN 'aria.mitchell@gmail.com' + WHEN 30 THEN 'wyatt.collins@gmail.com' + WHEN 31 THEN 'elena.morris@gmail.com' + WHEN 32 THEN 'leo.cook@gmail.com' + WHEN 33 THEN 'grace.bell@gmail.com' + WHEN 34 THEN 'hudson.reed@gmail.com' + WHEN 35 THEN 'claire.murphy@gmail.com' + WHEN 36 THEN 'omar.bailey@gmail.com' + WHEN 37 THEN 'naomi.cooper@gmail.com' + WHEN 38 THEN 'jasper.richardson@gmail.com' + WHEN 39 THEN 'sofia.cox@gmail.com' + WHEN 40 THEN 'miles.howard@gmail.com' + WHEN 41 THEN 'audrey.ward@gmail.com' + WHEN 42 THEN 'nathan.torres@gmail.com' + WHEN 43 THEN 'jade.peterson@gmail.com' + WHEN 44 THEN 'rowan.gray@gmail.com' + WHEN 45 THEN 'lila.ramirez@gmail.com' + WHEN 46 THEN 'eli.james@gmail.com' + WHEN 47 THEN 'violet.watson@gmail.com' + WHEN 48 THEN 'gavin.brooks@gmail.com' + WHEN 49 THEN 'stella.kelly@gmail.com' + WHEN 50 THEN 'adrian.sanders@gmail.com' + WHEN 51 THEN 'hazel.price@gmail.com' + WHEN 52 THEN 'connor.bennett@gmail.com' + WHEN 53 THEN 'sadie.wood@gmail.com' + WHEN 54 THEN 'xavier.barnes@gmail.com' + WHEN 55 THEN 'alice.ross@gmail.com' + WHEN 56 THEN 'roman.henderson@gmail.com' + WHEN 57 THEN 'lucy.coleman@gmail.com' + WHEN 58 THEN 'evan.jenkins@gmail.com' + WHEN 59 THEN 'mila.perry@gmail.com' + WHEN 60 THEN 'cole.powell@gmail.com' + WHEN 61 THEN 'nora.long@gmail.com' + WHEN 62 THEN 'adam.patterson@gmail.com' + WHEN 63 THEN 'layla.hughes@gmail.com' + WHEN 64 THEN 'blake.flores@gmail.com' + WHEN 65 THEN 'ellie.washington@gmail.com' + WHEN 66 THEN 'ryan.butler@gmail.com' + WHEN 67 THEN 'cora.simmons@gmail.com' + WHEN 68 THEN 'simon.foster@gmail.com' + WHEN 69 THEN 'piper.gonzales@gmail.com' + WHEN 70 THEN 'joel.bryant@gmail.com' + WHEN 71 THEN 'eva.alexander@gmail.com' + WHEN 72 THEN 'felix.russell@gmail.com' + WHEN 73 THEN 'maeve.griffin@gmail.com' + WHEN 74 THEN 'tristan.diaz@gmail.com' + WHEN 75 THEN 'ariana.hayes@gmail.com' + WHEN 76 THEN 'declan.myers@gmail.com' + WHEN 77 THEN 'brooke.ford@gmail.com' + WHEN 78 THEN 'micah.hamilton@gmail.com' + WHEN 79 THEN 'bianca.graham@gmail.com' + WHEN 80 THEN 'jonah.sullivan@gmail.com' + WHEN 81 THEN 'tessa.wallace@gmail.com' + WHEN 82 THEN 'damian.woods@gmail.com' + WHEN 83 THEN 'riley.cole@gmail.com' + WHEN 84 THEN 'kieran.west@gmail.com' + WHEN 85 THEN 'sienna.jordan@gmail.com' + WHEN 86 THEN 'finley.owens@gmail.com' + WHEN 87 THEN 'maren.reynolds@gmail.com' + WHEN 88 THEN 'asher.fisher@gmail.com' + WHEN 89 THEN 'daphne.ellis@gmail.com' + WHEN 90 THEN 'bennett.harrison@gmail.com' + WHEN 91 THEN 'selena.gibson@gmail.com' + WHEN 92 THEN 'emmett.mcdonald@gmail.com' + WHEN 93 THEN 'phoebe.cruz@gmail.com' + WHEN 94 THEN 'sawyer.marshall@gmail.com' + WHEN 95 THEN 'keira.ortiz@gmail.com' + WHEN 96 THEN 'landon.gomez@gmail.com' + WHEN 97 THEN 'rosalie.murray@gmail.com' + WHEN 98 THEN 'malik.freeman@gmail.com' + WHEN 99 THEN 'esme.wells@gmail.com' + WHEN 100 THEN 'holden.webb@gmail.com' + ELSE email + END, + firstName = CASE id + WHEN 15 THEN 'Test' + WHEN 16 THEN 'Maya' + WHEN 17 THEN 'Noah' + WHEN 18 THEN 'Avery' + WHEN 19 THEN 'Leah' + WHEN 20 THEN 'Julian' + WHEN 21 THEN 'Zoe' + WHEN 22 THEN 'Ethan' + WHEN 23 THEN 'Ruby' + WHEN 24 THEN 'Caleb' + WHEN 25 THEN 'Ivy' + WHEN 26 THEN 'Isaac' + WHEN 27 THEN 'Hannah' + WHEN 28 THEN 'Mason' + WHEN 29 THEN 'Aria' + WHEN 30 THEN 'Wyatt' + WHEN 31 THEN 'Elena' + WHEN 32 THEN 'Leo' + WHEN 33 THEN 'Grace' + WHEN 34 THEN 'Hudson' + WHEN 35 THEN 'Claire' + WHEN 36 THEN 'Omar' + WHEN 37 THEN 'Naomi' + WHEN 38 THEN 'Jasper' + WHEN 39 THEN 'Sofia' + WHEN 40 THEN 'Miles' + WHEN 41 THEN 'Audrey' + WHEN 42 THEN 'Nathan' + WHEN 43 THEN 'Jade' + WHEN 44 THEN 'Rowan' + WHEN 45 THEN 'Lila' + WHEN 46 THEN 'Eli' + WHEN 47 THEN 'Violet' + WHEN 48 THEN 'Gavin' + WHEN 49 THEN 'Stella' + WHEN 50 THEN 'Adrian' + WHEN 51 THEN 'Hazel' + WHEN 52 THEN 'Connor' + WHEN 53 THEN 'Sadie' + WHEN 54 THEN 'Xavier' + WHEN 55 THEN 'Alice' + WHEN 56 THEN 'Roman' + WHEN 57 THEN 'Lucy' + WHEN 58 THEN 'Evan' + WHEN 59 THEN 'Mila' + WHEN 60 THEN 'Cole' + WHEN 61 THEN 'Nora' + WHEN 62 THEN 'Adam' + WHEN 63 THEN 'Layla' + WHEN 64 THEN 'Blake' + WHEN 65 THEN 'Ellie' + WHEN 66 THEN 'Ryan' + WHEN 67 THEN 'Cora' + WHEN 68 THEN 'Simon' + WHEN 69 THEN 'Piper' + WHEN 70 THEN 'Joel' + WHEN 71 THEN 'Eva' + WHEN 72 THEN 'Felix' + WHEN 73 THEN 'Maeve' + WHEN 74 THEN 'Tristan' + WHEN 75 THEN 'Ariana' + WHEN 76 THEN 'Declan' + WHEN 77 THEN 'Brooke' + WHEN 78 THEN 'Micah' + WHEN 79 THEN 'Bianca' + WHEN 80 THEN 'Jonah' + WHEN 81 THEN 'Tessa' + WHEN 82 THEN 'Damian' + WHEN 83 THEN 'Riley' + WHEN 84 THEN 'Kieran' + WHEN 85 THEN 'Sienna' + WHEN 86 THEN 'Finley' + WHEN 87 THEN 'Maren' + WHEN 88 THEN 'Asher' + WHEN 89 THEN 'Daphne' + WHEN 90 THEN 'Bennett' + WHEN 91 THEN 'Selena' + WHEN 92 THEN 'Emmett' + WHEN 93 THEN 'Phoebe' + WHEN 94 THEN 'Sawyer' + WHEN 95 THEN 'Keira' + WHEN 96 THEN 'Landon' + WHEN 97 THEN 'Rosalie' + WHEN 98 THEN 'Malik' + WHEN 99 THEN 'Esme' + WHEN 100 THEN 'Holden' + ELSE firstName + END, + fullName = CASE id + WHEN 15 THEN 'Test Customer' + WHEN 16 THEN 'Maya Brown' + WHEN 17 THEN 'Noah Clark' + WHEN 18 THEN 'Avery Wilson' + WHEN 19 THEN 'Leah Martinez' + WHEN 20 THEN 'Julian Anderson' + WHEN 21 THEN 'Zoe Taylor' + WHEN 22 THEN 'Ethan Parker' + WHEN 23 THEN 'Ruby Evans' + WHEN 24 THEN 'Caleb Scott' + WHEN 25 THEN 'Ivy Adams' + WHEN 26 THEN 'Isaac Baker' + WHEN 27 THEN 'Hannah Hall' + WHEN 28 THEN 'Mason Rivera' + WHEN 29 THEN 'Aria Mitchell' + WHEN 30 THEN 'Wyatt Collins' + WHEN 31 THEN 'Elena Morris' + WHEN 32 THEN 'Leo Cook' + WHEN 33 THEN 'Grace Bell' + WHEN 34 THEN 'Hudson Reed' + WHEN 35 THEN 'Claire Murphy' + WHEN 36 THEN 'Omar Bailey' + WHEN 37 THEN 'Naomi Cooper' + WHEN 38 THEN 'Jasper Richardson' + WHEN 39 THEN 'Sofia Cox' + WHEN 40 THEN 'Miles Howard' + WHEN 41 THEN 'Audrey Ward' + WHEN 42 THEN 'Nathan Torres' + WHEN 43 THEN 'Jade Peterson' + WHEN 44 THEN 'Rowan Gray' + WHEN 45 THEN 'Lila Ramirez' + WHEN 46 THEN 'Eli James' + WHEN 47 THEN 'Violet Watson' + WHEN 48 THEN 'Gavin Brooks' + WHEN 49 THEN 'Stella Kelly' + WHEN 50 THEN 'Adrian Sanders' + WHEN 51 THEN 'Hazel Price' + WHEN 52 THEN 'Connor Bennett' + WHEN 53 THEN 'Sadie Wood' + WHEN 54 THEN 'Xavier Barnes' + WHEN 55 THEN 'Alice Ross' + WHEN 56 THEN 'Roman Henderson' + WHEN 57 THEN 'Lucy Coleman' + WHEN 58 THEN 'Evan Jenkins' + WHEN 59 THEN 'Mila Perry' + WHEN 60 THEN 'Cole Powell' + WHEN 61 THEN 'Nora Long' + WHEN 62 THEN 'Adam Patterson' + WHEN 63 THEN 'Layla Hughes' + WHEN 64 THEN 'Blake Flores' + WHEN 65 THEN 'Ellie Washington' + WHEN 66 THEN 'Ryan Butler' + WHEN 67 THEN 'Cora Simmons' + WHEN 68 THEN 'Simon Foster' + WHEN 69 THEN 'Piper Gonzales' + WHEN 70 THEN 'Joel Bryant' + WHEN 71 THEN 'Eva Alexander' + WHEN 72 THEN 'Felix Russell' + WHEN 73 THEN 'Maeve Griffin' + WHEN 74 THEN 'Tristan Diaz' + WHEN 75 THEN 'Ariana Hayes' + WHEN 76 THEN 'Declan Myers' + WHEN 77 THEN 'Brooke Ford' + WHEN 78 THEN 'Micah Hamilton' + WHEN 79 THEN 'Bianca Graham' + WHEN 80 THEN 'Jonah Sullivan' + WHEN 81 THEN 'Tessa Wallace' + WHEN 82 THEN 'Damian Woods' + WHEN 83 THEN 'Riley Cole' + WHEN 84 THEN 'Kieran West' + WHEN 85 THEN 'Sienna Jordan' + WHEN 86 THEN 'Finley Owens' + WHEN 87 THEN 'Maren Reynolds' + WHEN 88 THEN 'Asher Fisher' + WHEN 89 THEN 'Daphne Ellis' + WHEN 90 THEN 'Bennett Harrison' + WHEN 91 THEN 'Selena Gibson' + WHEN 92 THEN 'Emmett Mcdonald' + WHEN 93 THEN 'Phoebe Cruz' + WHEN 94 THEN 'Sawyer Marshall' + WHEN 95 THEN 'Keira Ortiz' + WHEN 96 THEN 'Landon Gomez' + WHEN 97 THEN 'Rosalie Murray' + WHEN 98 THEN 'Malik Freeman' + WHEN 99 THEN 'Esme Wells' + WHEN 100 THEN 'Holden Webb' + ELSE fullName + END, + primaryStoreId = CASE id + WHEN 15 THEN 1 + WHEN 16 THEN 2 + WHEN 17 THEN 3 + WHEN 18 THEN 1 + WHEN 19 THEN 2 + WHEN 20 THEN 3 + WHEN 21 THEN 1 + WHEN 22 THEN 2 + WHEN 23 THEN 3 + WHEN 24 THEN 1 + WHEN 25 THEN 2 + WHEN 26 THEN 3 + WHEN 27 THEN 1 + WHEN 28 THEN 2 + WHEN 29 THEN 3 + WHEN 30 THEN 1 + WHEN 31 THEN 2 + WHEN 32 THEN 3 + WHEN 33 THEN 1 + WHEN 34 THEN 2 + WHEN 35 THEN 3 + WHEN 36 THEN 1 + WHEN 37 THEN 2 + WHEN 38 THEN 3 + WHEN 39 THEN 1 + WHEN 40 THEN 2 + WHEN 41 THEN 3 + WHEN 42 THEN 1 + WHEN 43 THEN 2 + WHEN 44 THEN 3 + WHEN 45 THEN 1 + WHEN 46 THEN 2 + WHEN 47 THEN 3 + WHEN 48 THEN 1 + WHEN 49 THEN 2 + WHEN 50 THEN 3 + WHEN 51 THEN 1 + WHEN 52 THEN 2 + WHEN 53 THEN 3 + WHEN 54 THEN 1 + WHEN 55 THEN 2 + WHEN 56 THEN 3 + WHEN 57 THEN 1 + WHEN 58 THEN 2 + WHEN 59 THEN 3 + WHEN 60 THEN 1 + WHEN 61 THEN 2 + WHEN 62 THEN 3 + WHEN 63 THEN 1 + WHEN 64 THEN 2 + WHEN 65 THEN 3 + WHEN 66 THEN 1 + WHEN 67 THEN 2 + WHEN 68 THEN 3 + WHEN 69 THEN 1 + WHEN 70 THEN 2 + WHEN 71 THEN 3 + WHEN 72 THEN 1 + WHEN 73 THEN 2 + WHEN 74 THEN 3 + WHEN 75 THEN 1 + WHEN 76 THEN 2 + WHEN 77 THEN 3 + WHEN 78 THEN 1 + WHEN 79 THEN 2 + WHEN 80 THEN 3 + WHEN 81 THEN 1 + WHEN 82 THEN 2 + WHEN 83 THEN 3 + WHEN 84 THEN 1 + WHEN 85 THEN 2 + WHEN 86 THEN 3 + WHEN 87 THEN 1 + WHEN 88 THEN 2 + WHEN 89 THEN 3 + WHEN 90 THEN 1 + WHEN 91 THEN 2 + WHEN 92 THEN 3 + WHEN 93 THEN 1 + WHEN 94 THEN 2 + WHEN 95 THEN 3 + WHEN 96 THEN 1 + WHEN 97 THEN 2 + WHEN 98 THEN 3 + WHEN 99 THEN 1 + WHEN 100 THEN 2 + ELSE primaryStoreId + END +WHERE id BETWEEN 15 AND 100; + +UPDATE users +SET fullName = TRIM(CONCAT_WS(' ', firstName, lastName)) +WHERE (fullName IS NULL OR fullName = '') + AND ((firstName IS NOT NULL AND firstName <> '') OR (lastName IS NOT NULL AND lastName <> '')); + +UPDATE activityLog al +LEFT JOIN users u ON u.id = al.userId +LEFT JOIN storeLocation s ON s.storeId = al.storeId +SET al.usernameSnapshot = COALESCE(al.usernameSnapshot, u.username), + al.fullNameSnapshot = COALESCE(al.fullNameSnapshot, COALESCE(NULLIF(u.fullName, ''), TRIM(CONCAT_WS(' ', u.firstName, u.lastName)))), + al.roleSnapshot = COALESCE(al.roleSnapshot, u.role), + al.storeNameSnapshot = COALESCE(al.storeNameSnapshot, s.storeName) +WHERE al.usernameSnapshot IS NULL + OR al.fullNameSnapshot IS NULL + OR al.roleSnapshot IS NULL + OR (al.storeId IS NOT NULL AND al.storeNameSnapshot IS NULL); diff --git a/backend/src/main/resources/dev/final-target/final_target_schema.sql b/backend/src/main/resources/dev/final-target/final_target_schema.sql index 9b8d279d..c94e10dc 100644 --- a/backend/src/main/resources/dev/final-target/final_target_schema.sql +++ b/backend/src/main/resources/dev/final-target/final_target_schema.sql @@ -309,6 +309,10 @@ CREATE TABLE IF NOT EXISTS activityLog ( logId BIGINT AUTO_INCREMENT PRIMARY KEY, userId BIGINT NOT NULL, storeId BIGINT NULL, + usernameSnapshot VARCHAR(50) NULL, + fullNameSnapshot VARCHAR(100) NULL, + roleSnapshot VARCHAR(20) NULL, + storeNameSnapshot VARCHAR(100) NULL, activity TEXT NOT NULL, logTimestamp TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, CONSTRAINT fk_activity_log_user FOREIGN KEY (userId) REFERENCES users(id), @@ -341,3 +345,4 @@ CREATE INDEX idx_cart_user ON cart(userId); CREATE INDEX idx_conversation_customer ON conversation(customerId); CREATE INDEX idx_conversation_staff ON conversation(staffId); CREATE INDEX idx_activity_log_store ON activityLog(storeId); +CREATE INDEX idx_activity_log_timestamp_id ON activityLog(logTimestamp, logId); diff --git a/backend/src/main/resources/dev/final-target/final_target_seed.sql b/backend/src/main/resources/dev/final-target/final_target_seed.sql index 447f1dad..dbd7296a 100644 --- a/backend/src/main/resources/dev/final-target/final_target_seed.sql +++ b/backend/src/main/resources/dev/final-target/final_target_seed.sql @@ -69,91 +69,91 @@ INSERT INTO users (id, username, password, email, firstName, lastName, fullName, (13, 'chloe.martin', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'chloe.martin@petshop.com', 'Chloe', 'Martin', 'Chloe Martin', '403-710-0013', 'https://images.petshop.local/users/013.webp', 'STAFF', 'VETERINARY_TECH', 3, 0, 1, 0), (14, 'owen.baker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'owen.baker@petshop.com', 'Owen', 'Baker', 'Owen Baker', '403-710-0014', 'https://images.petshop.local/users/014.webp', 'STAFF', 'GROOMER', 3, 0, 1, 0), (15, 'customer', '$2y$10$fgIlTHDYUOzvbczwdhQP7..YuAHr2cGODb9OBQJqole3AkiY4CGUq', 'customer@petshop.com', 'Test', 'Customer', 'Test Customer', '000-000-1002', 'https://images.petshop.local/users/015.webp', 'CUSTOMER', 'CUSTOMER', 1, 0, 1, 0), -(16, 'alex.brown', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.brown@gmail.com', 'Alex', 'Brown', 'Alex Brown', '403-730-0016', 'https://images.petshop.local/users/016.webp', 'CUSTOMER', 'CUSTOMER', 2, 12, 1, 0), -(17, 'alex.clark', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.clark@gmail.com', 'Alex', 'Clark', 'Alex Clark', '403-730-0017', 'https://images.petshop.local/users/017.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), -(18, 'alex.wilson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.wilson@gmail.com', 'Alex', 'Wilson', 'Alex Wilson', '403-730-0018', 'https://images.petshop.local/users/018.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), -(19, 'alex.martinez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.martinez@gmail.com', 'Alex', 'Martinez', 'Alex Martinez', '403-730-0019', 'https://images.petshop.local/users/019.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), -(20, 'alex.anderson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.anderson@gmail.com', 'Alex', 'Anderson', 'Alex Anderson', '403-730-0020', 'https://images.petshop.local/users/020.webp', 'CUSTOMER', 'CUSTOMER', 3, 12, 1, 0), -(21, 'alex.taylor', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.taylor@gmail.com', 'Alex', 'Taylor', 'Alex Taylor', '403-730-0021', 'https://images.petshop.local/users/021.webp', 'CUSTOMER', 'CUSTOMER', 1, 11, 1, 0), -(22, 'alex.parker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.parker@gmail.com', 'Alex', 'Parker', 'Alex Parker', '403-730-0022', 'https://images.petshop.local/users/022.webp', 'CUSTOMER', 'CUSTOMER', 2, 16, 1, 0), -(23, 'alex.evans', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.evans@gmail.com', 'Alex', 'Evans', 'Alex Evans', '403-730-0023', 'https://images.petshop.local/users/023.webp', 'CUSTOMER', 'CUSTOMER', 3, 36, 1, 0), -(24, 'alex.scott', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.scott@gmail.com', 'Alex', 'Scott', 'Alex Scott', '403-730-0024', 'https://images.petshop.local/users/024.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), -(25, 'alex.adams', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.adams@gmail.com', 'Alex', 'Adams', 'Alex Adams', '403-730-0025', 'https://images.petshop.local/users/025.webp', 'CUSTOMER', 'CUSTOMER', 2, 8, 1, 0), -(26, 'alex.baker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.baker@gmail.com', 'Alex', 'Baker', 'Alex Baker', '403-730-0026', 'https://images.petshop.local/users/026.webp', 'CUSTOMER', 'CUSTOMER', 3, 29, 1, 0), -(27, 'alex.hall', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.hall@gmail.com', 'Alex', 'Hall', 'Alex Hall', '403-730-0027', 'https://images.petshop.local/users/027.webp', 'CUSTOMER', 'CUSTOMER', 1, 3, 1, 0), -(28, 'alex.rivera', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.rivera@gmail.com', 'Alex', 'Rivera', 'Alex Rivera', '403-730-0028', 'https://images.petshop.local/users/028.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), -(29, 'alex.mitchell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.mitchell@gmail.com', 'Alex', 'Mitchell', 'Alex Mitchell', '403-730-0029', 'https://images.petshop.local/users/029.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), -(30, 'alex.collins', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.collins@gmail.com', 'Alex', 'Collins', 'Alex Collins', '403-730-0030', 'https://images.petshop.local/users/030.webp', 'CUSTOMER', 'CUSTOMER', 1, 16, 1, 0), -(31, 'alex.morris', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.morris@gmail.com', 'Alex', 'Morris', 'Alex Morris', '403-730-0031', 'https://images.petshop.local/users/031.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), -(32, 'alex.cook', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.cook@gmail.com', 'Alex', 'Cook', 'Alex Cook', '403-730-0032', 'https://images.petshop.local/users/032.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), -(33, 'alex.bell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.bell@gmail.com', 'Alex', 'Bell', 'Alex Bell', '403-730-0033', 'https://images.petshop.local/users/033.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), -(34, 'alex.reed', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.reed@gmail.com', 'Alex', 'Reed', 'Alex Reed', '403-730-0034', 'https://images.petshop.local/users/034.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), -(35, 'alex.murphy', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.murphy@gmail.com', 'Alex', 'Murphy', 'Alex Murphy', '403-730-0035', 'https://images.petshop.local/users/035.webp', 'CUSTOMER', 'CUSTOMER', 3, 31, 1, 0), -(36, 'alex.bailey', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.bailey@gmail.com', 'Alex', 'Bailey', 'Alex Bailey', '403-730-0036', 'https://images.petshop.local/users/036.webp', 'CUSTOMER', 'CUSTOMER', 1, 6, 1, 0), -(37, 'alex.cooper', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.cooper@gmail.com', 'Alex', 'Cooper', 'Alex Cooper', '403-730-0037', 'https://images.petshop.local/users/037.webp', 'CUSTOMER', 'CUSTOMER', 2, 4, 1, 0), -(38, 'alex.richardson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.richardson@gmail.com', 'Alex', 'Richardson', 'Alex Richardson', '403-730-0038', 'https://images.petshop.local/users/038.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), -(39, 'alex.cox', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.cox@gmail.com', 'Alex', 'Cox', 'Alex Cox', '403-730-0039', 'https://images.petshop.local/users/039.webp', 'CUSTOMER', 'CUSTOMER', 1, 4, 1, 0), -(40, 'alex.howard', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.howard@gmail.com', 'Alex', 'Howard', 'Alex Howard', '403-730-0040', 'https://images.petshop.local/users/040.webp', 'CUSTOMER', 'CUSTOMER', 2, 12, 1, 0), -(41, 'alex.ward', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.ward@gmail.com', 'Alex', 'Ward', 'Alex Ward', '403-730-0041', 'https://images.petshop.local/users/041.webp', 'CUSTOMER', 'CUSTOMER', 3, 18, 1, 0), -(42, 'alex.torres', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.torres@gmail.com', 'Alex', 'Torres', 'Alex Torres', '403-730-0042', 'https://images.petshop.local/users/042.webp', 'CUSTOMER', 'CUSTOMER', 1, 10, 1, 0), -(43, 'alex.peterson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.peterson@gmail.com', 'Alex', 'Peterson', 'Alex Peterson', '403-730-0043', 'https://images.petshop.local/users/043.webp', 'CUSTOMER', 'CUSTOMER', 2, 6, 1, 0), -(44, 'alex.gray', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.gray@gmail.com', 'Alex', 'Gray', 'Alex Gray', '403-730-0044', 'https://images.petshop.local/users/044.webp', 'CUSTOMER', 'CUSTOMER', 3, 11, 1, 0), -(45, 'alex.ramirez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.ramirez@gmail.com', 'Alex', 'Ramirez', 'Alex Ramirez', '403-730-0045', 'https://images.petshop.local/users/045.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), -(46, 'alex.james', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.james@gmail.com', 'Alex', 'James', 'Alex James', '403-730-0046', 'https://images.petshop.local/users/046.webp', 'CUSTOMER', 'CUSTOMER', 2, 28, 1, 0), -(47, 'alex.watson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.watson@gmail.com', 'Alex', 'Watson', 'Alex Watson', '403-730-0047', 'https://images.petshop.local/users/047.webp', 'CUSTOMER', 'CUSTOMER', 3, 8, 1, 0), -(48, 'alex.brooks', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.brooks@gmail.com', 'Alex', 'Brooks', 'Alex Brooks', '403-730-0048', 'https://images.petshop.local/users/048.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), -(49, 'alex.kelly', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.kelly@gmail.com', 'Alex', 'Kelly', 'Alex Kelly', '403-730-0049', 'https://images.petshop.local/users/049.webp', 'CUSTOMER', 'CUSTOMER', 2, 16, 1, 0), -(50, 'alex.sanders', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.sanders@gmail.com', 'Alex', 'Sanders', 'Alex Sanders', '403-730-0050', 'https://images.petshop.local/users/050.webp', 'CUSTOMER', 'CUSTOMER', 3, 21, 1, 0), -(51, 'alex.price', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.price@gmail.com', 'Alex', 'Price', 'Alex Price', '403-730-0051', 'https://images.petshop.local/users/051.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), -(52, 'alex.bennett', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.bennett@gmail.com', 'Alex', 'Bennett', 'Alex Bennett', '403-730-0052', 'https://images.petshop.local/users/052.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), -(53, 'alex.wood', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.wood@gmail.com', 'Alex', 'Wood', 'Alex Wood', '403-730-0053', 'https://images.petshop.local/users/053.webp', 'CUSTOMER', 'CUSTOMER', 3, 10, 1, 0), -(54, 'alex.barnes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.barnes@gmail.com', 'Alex', 'Barnes', 'Alex Barnes', '403-730-0054', 'https://images.petshop.local/users/054.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), -(55, 'alex.ross', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.ross@gmail.com', 'Alex', 'Ross', 'Alex Ross', '403-730-0055', 'https://images.petshop.local/users/055.webp', 'CUSTOMER', 'CUSTOMER', 2, 7, 1, 0), -(56, 'alex.henderson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.henderson@gmail.com', 'Alex', 'Henderson', 'Alex Henderson', '403-730-0056', 'https://images.petshop.local/users/056.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), -(57, 'alex.coleman', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.coleman@gmail.com', 'Alex', 'Coleman', 'Alex Coleman', '403-730-0057', 'https://images.petshop.local/users/057.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), -(58, 'alex.jenkins', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.jenkins@gmail.com', 'Alex', 'Jenkins', 'Alex Jenkins', '403-730-0058', 'https://images.petshop.local/users/058.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), -(59, 'alex.perry', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.perry@gmail.com', 'Alex', 'Perry', 'Alex Perry', '403-730-0059', 'https://images.petshop.local/users/059.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), -(60, 'alex.powell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.powell@gmail.com', 'Alex', 'Powell', 'Alex Powell', '403-730-0060', 'https://images.petshop.local/users/060.webp', 'CUSTOMER', 'CUSTOMER', 1, 4, 1, 0), -(61, 'alex.long', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.long@gmail.com', 'Alex', 'Long', 'Alex Long', '403-730-0061', 'https://images.petshop.local/users/061.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), -(62, 'alex.patterson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.patterson@gmail.com', 'Alex', 'Patterson', 'Alex Patterson', '403-730-0062', 'https://images.petshop.local/users/062.webp', 'CUSTOMER', 'CUSTOMER', 3, 26, 1, 0), -(63, 'alex.hughes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.hughes@gmail.com', 'Alex', 'Hughes', 'Alex Hughes', '403-730-0063', 'https://images.petshop.local/users/063.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), -(64, 'alex.flores', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.flores@gmail.com', 'Alex', 'Flores', 'Alex Flores', '403-730-0064', 'https://images.petshop.local/users/064.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), -(65, 'alex.washington', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.washington@gmail.com', 'Alex', 'Washington', 'Alex Washington', '403-730-0065', 'https://images.petshop.local/users/065.webp', 'CUSTOMER', 'CUSTOMER', 3, 22, 1, 0), -(66, 'alex.butler', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.butler@gmail.com', 'Alex', 'Butler', 'Alex Butler', '403-730-0066', 'https://images.petshop.local/users/066.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), -(67, 'alex.simmons', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.simmons@gmail.com', 'Alex', 'Simmons', 'Alex Simmons', '403-730-0067', 'https://images.petshop.local/users/067.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), -(68, 'alex.foster', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.foster@gmail.com', 'Alex', 'Foster', 'Alex Foster', '403-730-0068', 'https://images.petshop.local/users/068.webp', 'CUSTOMER', 'CUSTOMER', 3, 17, 1, 0), -(69, 'alex.gonzales', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.gonzales@gmail.com', 'Alex', 'Gonzales', 'Alex Gonzales', '403-730-0069', 'https://images.petshop.local/users/069.webp', 'CUSTOMER', 'CUSTOMER', 1, 15, 1, 0), -(70, 'alex.bryant', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.bryant@gmail.com', 'Alex', 'Bryant', 'Alex Bryant', '403-730-0070', 'https://images.petshop.local/users/070.webp', 'CUSTOMER', 'CUSTOMER', 2, 19, 1, 0), -(71, 'alex.alexander', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.alexander@gmail.com', 'Alex', 'Alexander', 'Alex Alexander', '403-730-0071', 'https://images.petshop.local/users/071.webp', 'CUSTOMER', 'CUSTOMER', 3, 13, 1, 0), -(72, 'alex.russell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.russell@gmail.com', 'Alex', 'Russell', 'Alex Russell', '403-730-0072', 'https://images.petshop.local/users/072.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), -(73, 'alex.griffin', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.griffin@gmail.com', 'Alex', 'Griffin', 'Alex Griffin', '403-730-0073', 'https://images.petshop.local/users/073.webp', 'CUSTOMER', 'CUSTOMER', 2, 2, 1, 0), -(74, 'alex.diaz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.diaz@gmail.com', 'Alex', 'Diaz', 'Alex Diaz', '403-730-0074', 'https://images.petshop.local/users/074.webp', 'CUSTOMER', 'CUSTOMER', 3, 10, 1, 0), -(75, 'alex.hayes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.hayes@gmail.com', 'Alex', 'Hayes', 'Alex Hayes', '403-730-0075', 'https://images.petshop.local/users/075.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), -(76, 'alex.myers', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.myers@gmail.com', 'Alex', 'Myers', 'Alex Myers', '403-730-0076', 'https://images.petshop.local/users/076.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), -(77, 'alex.ford', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.ford@gmail.com', 'Alex', 'Ford', 'Alex Ford', '403-730-0077', 'https://images.petshop.local/users/077.webp', 'CUSTOMER', 'CUSTOMER', 3, 13, 1, 0), -(78, 'alex.hamilton', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.hamilton@gmail.com', 'Alex', 'Hamilton', 'Alex Hamilton', '403-730-0078', 'https://images.petshop.local/users/078.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), -(79, 'alex.graham', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.graham@gmail.com', 'Alex', 'Graham', 'Alex Graham', '403-730-0079', 'https://images.petshop.local/users/079.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), -(80, 'alex.sullivan', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.sullivan@gmail.com', 'Alex', 'Sullivan', 'Alex Sullivan', '403-730-0080', 'https://images.petshop.local/users/080.webp', 'CUSTOMER', 'CUSTOMER', 3, 12, 1, 0), -(81, 'alex.wallace', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.wallace@gmail.com', 'Alex', 'Wallace', 'Alex Wallace', '403-730-0081', 'https://images.petshop.local/users/081.webp', 'CUSTOMER', 'CUSTOMER', 1, 11, 1, 0), -(82, 'alex.woods', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.woods@gmail.com', 'Alex', 'Woods', 'Alex Woods', '403-730-0082', 'https://images.petshop.local/users/082.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), -(83, 'alex.cole', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.cole@gmail.com', 'Alex', 'Cole', 'Alex Cole', '403-730-0083', 'https://images.petshop.local/users/083.webp', 'CUSTOMER', 'CUSTOMER', 3, 36, 1, 0), -(84, 'alex.west', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.west@gmail.com', 'Alex', 'West', 'Alex West', '403-730-0084', 'https://images.petshop.local/users/084.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), -(85, 'alex.jordan', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.jordan@gmail.com', 'Alex', 'Jordan', 'Alex Jordan', '403-730-0085', 'https://images.petshop.local/users/085.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), -(86, 'alex.owens', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.owens@gmail.com', 'Alex', 'Owens', 'Alex Owens', '403-730-0086', 'https://images.petshop.local/users/086.webp', 'CUSTOMER', 'CUSTOMER', 3, 26, 1, 0), -(87, 'alex.reynolds', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.reynolds@gmail.com', 'Alex', 'Reynolds', 'Alex Reynolds', '403-730-0087', 'https://images.petshop.local/users/087.webp', 'CUSTOMER', 'CUSTOMER', 1, 3, 1, 0), -(88, 'alex.fisher', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.fisher@gmail.com', 'Alex', 'Fisher', 'Alex Fisher', '403-730-0088', 'https://images.petshop.local/users/088.webp', 'CUSTOMER', 'CUSTOMER', 2, 11, 1, 0), -(89, 'alex.ellis', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.ellis@gmail.com', 'Alex', 'Ellis', 'Alex Ellis', '403-730-0089', 'https://images.petshop.local/users/089.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), -(90, 'alex.harrison', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.harrison@gmail.com', 'Alex', 'Harrison', 'Alex Harrison', '403-730-0090', 'https://images.petshop.local/users/090.webp', 'CUSTOMER', 'CUSTOMER', 1, 16, 1, 0), -(91, 'alex.gibson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.gibson@gmail.com', 'Alex', 'Gibson', 'Alex Gibson', '403-730-0091', 'https://images.petshop.local/users/091.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), -(92, 'alex.mcdonald', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.mcdonald@gmail.com', 'Alex', 'Mcdonald', 'Alex Mcdonald', '403-730-0092', 'https://images.petshop.local/users/092.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), -(93, 'alex.cruz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.cruz@gmail.com', 'Alex', 'Cruz', 'Alex Cruz', '403-730-0093', 'https://images.petshop.local/users/093.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), -(94, 'alex.marshall', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.marshall@gmail.com', 'Alex', 'Marshall', 'Alex Marshall', '403-730-0094', 'https://images.petshop.local/users/094.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), -(95, 'alex.ortiz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.ortiz@gmail.com', 'Alex', 'Ortiz', 'Alex Ortiz', '403-730-0095', 'https://images.petshop.local/users/095.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), -(96, 'alex.gomez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.gomez@gmail.com', 'Alex', 'Gomez', 'Alex Gomez', '403-730-0096', 'https://images.petshop.local/users/096.webp', 'CUSTOMER', 'CUSTOMER', 1, 6, 1, 0), -(97, 'alex.murray', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.murray@gmail.com', 'Alex', 'Murray', 'Alex Murray', '403-730-0097', 'https://images.petshop.local/users/097.webp', 'CUSTOMER', 'CUSTOMER', 2, 4, 1, 0), -(98, 'alex.freeman', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.freeman@gmail.com', 'Alex', 'Freeman', 'Alex Freeman', '403-730-0098', 'https://images.petshop.local/users/098.webp', 'CUSTOMER', 'CUSTOMER', 3, 0, 1, 0), -(99, 'alex.wells', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.wells@gmail.com', 'Alex', 'Wells', 'Alex Wells', '403-730-0099', 'https://images.petshop.local/users/099.webp', 'CUSTOMER', 'CUSTOMER', 1, 0, 1, 0), -(100, 'alex.webb', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alex.webb@gmail.com', 'Alex', 'Webb', 'Alex Webb', '403-730-0100', 'https://images.petshop.local/users/100.webp', 'CUSTOMER', 'CUSTOMER', 2, 0, 1, 0), +(16, 'maya.brown', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'maya.brown@gmail.com', 'Maya', 'Brown', 'Maya Brown', '403-730-0016', 'https://images.petshop.local/users/016.webp', 'CUSTOMER', 'CUSTOMER', 2, 12, 1, 0), +(17, 'noah.clark', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'noah.clark@gmail.com', 'Noah', 'Clark', 'Noah Clark', '403-730-0017', 'https://images.petshop.local/users/017.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), +(18, 'avery.wilson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'avery.wilson@gmail.com', 'Avery', 'Wilson', 'Avery Wilson', '403-730-0018', 'https://images.petshop.local/users/018.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(19, 'leah.martinez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'leah.martinez@gmail.com', 'Leah', 'Martinez', 'Leah Martinez', '403-730-0019', 'https://images.petshop.local/users/019.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(20, 'julian.anderson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'julian.anderson@gmail.com', 'Julian', 'Anderson', 'Julian Anderson', '403-730-0020', 'https://images.petshop.local/users/020.webp', 'CUSTOMER', 'CUSTOMER', 3, 12, 1, 0), +(21, 'zoe.taylor', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'zoe.taylor@gmail.com', 'Zoe', 'Taylor', 'Zoe Taylor', '403-730-0021', 'https://images.petshop.local/users/021.webp', 'CUSTOMER', 'CUSTOMER', 1, 11, 1, 0), +(22, 'ethan.parker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ethan.parker@gmail.com', 'Ethan', 'Parker', 'Ethan Parker', '403-730-0022', 'https://images.petshop.local/users/022.webp', 'CUSTOMER', 'CUSTOMER', 2, 16, 1, 0), +(23, 'ruby.evans', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ruby.evans@gmail.com', 'Ruby', 'Evans', 'Ruby Evans', '403-730-0023', 'https://images.petshop.local/users/023.webp', 'CUSTOMER', 'CUSTOMER', 3, 36, 1, 0), +(24, 'caleb.scott', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'caleb.scott@gmail.com', 'Caleb', 'Scott', 'Caleb Scott', '403-730-0024', 'https://images.petshop.local/users/024.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(25, 'ivy.adams', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ivy.adams@gmail.com', 'Ivy', 'Adams', 'Ivy Adams', '403-730-0025', 'https://images.petshop.local/users/025.webp', 'CUSTOMER', 'CUSTOMER', 2, 8, 1, 0), +(26, 'isaac.baker', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'isaac.baker@gmail.com', 'Isaac', 'Baker', 'Isaac Baker', '403-730-0026', 'https://images.petshop.local/users/026.webp', 'CUSTOMER', 'CUSTOMER', 3, 29, 1, 0), +(27, 'hannah.hall', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'hannah.hall@gmail.com', 'Hannah', 'Hall', 'Hannah Hall', '403-730-0027', 'https://images.petshop.local/users/027.webp', 'CUSTOMER', 'CUSTOMER', 1, 3, 1, 0), +(28, 'mason.rivera', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'mason.rivera@gmail.com', 'Mason', 'Rivera', 'Mason Rivera', '403-730-0028', 'https://images.petshop.local/users/028.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), +(29, 'aria.mitchell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'aria.mitchell@gmail.com', 'Aria', 'Mitchell', 'Aria Mitchell', '403-730-0029', 'https://images.petshop.local/users/029.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), +(30, 'wyatt.collins', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'wyatt.collins@gmail.com', 'Wyatt', 'Collins', 'Wyatt Collins', '403-730-0030', 'https://images.petshop.local/users/030.webp', 'CUSTOMER', 'CUSTOMER', 1, 16, 1, 0), +(31, 'elena.morris', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'elena.morris@gmail.com', 'Elena', 'Morris', 'Elena Morris', '403-730-0031', 'https://images.petshop.local/users/031.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(32, 'leo.cook', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'leo.cook@gmail.com', 'Leo', 'Cook', 'Leo Cook', '403-730-0032', 'https://images.petshop.local/users/032.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), +(33, 'grace.bell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'grace.bell@gmail.com', 'Grace', 'Bell', 'Grace Bell', '403-730-0033', 'https://images.petshop.local/users/033.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(34, 'hudson.reed', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'hudson.reed@gmail.com', 'Hudson', 'Reed', 'Hudson Reed', '403-730-0034', 'https://images.petshop.local/users/034.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(35, 'claire.murphy', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'claire.murphy@gmail.com', 'Claire', 'Murphy', 'Claire Murphy', '403-730-0035', 'https://images.petshop.local/users/035.webp', 'CUSTOMER', 'CUSTOMER', 3, 31, 1, 0), +(36, 'omar.bailey', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'omar.bailey@gmail.com', 'Omar', 'Bailey', 'Omar Bailey', '403-730-0036', 'https://images.petshop.local/users/036.webp', 'CUSTOMER', 'CUSTOMER', 1, 6, 1, 0), +(37, 'naomi.cooper', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'naomi.cooper@gmail.com', 'Naomi', 'Cooper', 'Naomi Cooper', '403-730-0037', 'https://images.petshop.local/users/037.webp', 'CUSTOMER', 'CUSTOMER', 2, 4, 1, 0), +(38, 'jasper.richardson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'jasper.richardson@gmail.com', 'Jasper', 'Richardson', 'Jasper Richardson', '403-730-0038', 'https://images.petshop.local/users/038.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), +(39, 'sofia.cox', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sofia.cox@gmail.com', 'Sofia', 'Cox', 'Sofia Cox', '403-730-0039', 'https://images.petshop.local/users/039.webp', 'CUSTOMER', 'CUSTOMER', 1, 4, 1, 0), +(40, 'miles.howard', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'miles.howard@gmail.com', 'Miles', 'Howard', 'Miles Howard', '403-730-0040', 'https://images.petshop.local/users/040.webp', 'CUSTOMER', 'CUSTOMER', 2, 12, 1, 0), +(41, 'audrey.ward', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'audrey.ward@gmail.com', 'Audrey', 'Ward', 'Audrey Ward', '403-730-0041', 'https://images.petshop.local/users/041.webp', 'CUSTOMER', 'CUSTOMER', 3, 18, 1, 0), +(42, 'nathan.torres', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'nathan.torres@gmail.com', 'Nathan', 'Torres', 'Nathan Torres', '403-730-0042', 'https://images.petshop.local/users/042.webp', 'CUSTOMER', 'CUSTOMER', 1, 10, 1, 0), +(43, 'jade.peterson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'jade.peterson@gmail.com', 'Jade', 'Peterson', 'Jade Peterson', '403-730-0043', 'https://images.petshop.local/users/043.webp', 'CUSTOMER', 'CUSTOMER', 2, 6, 1, 0), +(44, 'rowan.gray', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'rowan.gray@gmail.com', 'Rowan', 'Gray', 'Rowan Gray', '403-730-0044', 'https://images.petshop.local/users/044.webp', 'CUSTOMER', 'CUSTOMER', 3, 11, 1, 0), +(45, 'lila.ramirez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'lila.ramirez@gmail.com', 'Lila', 'Ramirez', 'Lila Ramirez', '403-730-0045', 'https://images.petshop.local/users/045.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(46, 'eli.james', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'eli.james@gmail.com', 'Eli', 'James', 'Eli James', '403-730-0046', 'https://images.petshop.local/users/046.webp', 'CUSTOMER', 'CUSTOMER', 2, 28, 1, 0), +(47, 'violet.watson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'violet.watson@gmail.com', 'Violet', 'Watson', 'Violet Watson', '403-730-0047', 'https://images.petshop.local/users/047.webp', 'CUSTOMER', 'CUSTOMER', 3, 8, 1, 0), +(48, 'gavin.brooks', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'gavin.brooks@gmail.com', 'Gavin', 'Brooks', 'Gavin Brooks', '403-730-0048', 'https://images.petshop.local/users/048.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(49, 'stella.kelly', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'stella.kelly@gmail.com', 'Stella', 'Kelly', 'Stella Kelly', '403-730-0049', 'https://images.petshop.local/users/049.webp', 'CUSTOMER', 'CUSTOMER', 2, 16, 1, 0), +(50, 'adrian.sanders', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'adrian.sanders@gmail.com', 'Adrian', 'Sanders', 'Adrian Sanders', '403-730-0050', 'https://images.petshop.local/users/050.webp', 'CUSTOMER', 'CUSTOMER', 3, 21, 1, 0), +(51, 'hazel.price', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'hazel.price@gmail.com', 'Hazel', 'Price', 'Hazel Price', '403-730-0051', 'https://images.petshop.local/users/051.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), +(52, 'connor.bennett', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'connor.bennett@gmail.com', 'Connor', 'Bennett', 'Connor Bennett', '403-730-0052', 'https://images.petshop.local/users/052.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), +(53, 'sadie.wood', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sadie.wood@gmail.com', 'Sadie', 'Wood', 'Sadie Wood', '403-730-0053', 'https://images.petshop.local/users/053.webp', 'CUSTOMER', 'CUSTOMER', 3, 10, 1, 0), +(54, 'xavier.barnes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'xavier.barnes@gmail.com', 'Xavier', 'Barnes', 'Xavier Barnes', '403-730-0054', 'https://images.petshop.local/users/054.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(55, 'alice.ross', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'alice.ross@gmail.com', 'Alice', 'Ross', 'Alice Ross', '403-730-0055', 'https://images.petshop.local/users/055.webp', 'CUSTOMER', 'CUSTOMER', 2, 7, 1, 0), +(56, 'roman.henderson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'roman.henderson@gmail.com', 'Roman', 'Henderson', 'Roman Henderson', '403-730-0056', 'https://images.petshop.local/users/056.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), +(57, 'lucy.coleman', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'lucy.coleman@gmail.com', 'Lucy', 'Coleman', 'Lucy Coleman', '403-730-0057', 'https://images.petshop.local/users/057.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(58, 'evan.jenkins', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'evan.jenkins@gmail.com', 'Evan', 'Jenkins', 'Evan Jenkins', '403-730-0058', 'https://images.petshop.local/users/058.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), +(59, 'mila.perry', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'mila.perry@gmail.com', 'Mila', 'Perry', 'Mila Perry', '403-730-0059', 'https://images.petshop.local/users/059.webp', 'CUSTOMER', 'CUSTOMER', 3, 15, 1, 0), +(60, 'cole.powell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'cole.powell@gmail.com', 'Cole', 'Powell', 'Cole Powell', '403-730-0060', 'https://images.petshop.local/users/060.webp', 'CUSTOMER', 'CUSTOMER', 1, 4, 1, 0), +(61, 'nora.long', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'nora.long@gmail.com', 'Nora', 'Long', 'Nora Long', '403-730-0061', 'https://images.petshop.local/users/061.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), +(62, 'adam.patterson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'adam.patterson@gmail.com', 'Adam', 'Patterson', 'Adam Patterson', '403-730-0062', 'https://images.petshop.local/users/062.webp', 'CUSTOMER', 'CUSTOMER', 3, 26, 1, 0), +(63, 'layla.hughes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'layla.hughes@gmail.com', 'Layla', 'Hughes', 'Layla Hughes', '403-730-0063', 'https://images.petshop.local/users/063.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(64, 'blake.flores', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'blake.flores@gmail.com', 'Blake', 'Flores', 'Blake Flores', '403-730-0064', 'https://images.petshop.local/users/064.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(65, 'ellie.washington', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ellie.washington@gmail.com', 'Ellie', 'Washington', 'Ellie Washington', '403-730-0065', 'https://images.petshop.local/users/065.webp', 'CUSTOMER', 'CUSTOMER', 3, 22, 1, 0), +(66, 'ryan.butler', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ryan.butler@gmail.com', 'Ryan', 'Butler', 'Ryan Butler', '403-730-0066', 'https://images.petshop.local/users/066.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(67, 'cora.simmons', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'cora.simmons@gmail.com', 'Cora', 'Simmons', 'Cora Simmons', '403-730-0067', 'https://images.petshop.local/users/067.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(68, 'simon.foster', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'simon.foster@gmail.com', 'Simon', 'Foster', 'Simon Foster', '403-730-0068', 'https://images.petshop.local/users/068.webp', 'CUSTOMER', 'CUSTOMER', 3, 17, 1, 0), +(69, 'piper.gonzales', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'piper.gonzales@gmail.com', 'Piper', 'Gonzales', 'Piper Gonzales', '403-730-0069', 'https://images.petshop.local/users/069.webp', 'CUSTOMER', 'CUSTOMER', 1, 15, 1, 0), +(70, 'joel.bryant', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'joel.bryant@gmail.com', 'Joel', 'Bryant', 'Joel Bryant', '403-730-0070', 'https://images.petshop.local/users/070.webp', 'CUSTOMER', 'CUSTOMER', 2, 19, 1, 0), +(71, 'eva.alexander', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'eva.alexander@gmail.com', 'Eva', 'Alexander', 'Eva Alexander', '403-730-0071', 'https://images.petshop.local/users/071.webp', 'CUSTOMER', 'CUSTOMER', 3, 13, 1, 0), +(72, 'felix.russell', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'felix.russell@gmail.com', 'Felix', 'Russell', 'Felix Russell', '403-730-0072', 'https://images.petshop.local/users/072.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), +(73, 'maeve.griffin', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'maeve.griffin@gmail.com', 'Maeve', 'Griffin', 'Maeve Griffin', '403-730-0073', 'https://images.petshop.local/users/073.webp', 'CUSTOMER', 'CUSTOMER', 2, 2, 1, 0), +(74, 'tristan.diaz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'tristan.diaz@gmail.com', 'Tristan', 'Diaz', 'Tristan Diaz', '403-730-0074', 'https://images.petshop.local/users/074.webp', 'CUSTOMER', 'CUSTOMER', 3, 10, 1, 0), +(75, 'ariana.hayes', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'ariana.hayes@gmail.com', 'Ariana', 'Hayes', 'Ariana Hayes', '403-730-0075', 'https://images.petshop.local/users/075.webp', 'CUSTOMER', 'CUSTOMER', 1, 7, 1, 0), +(76, 'declan.myers', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'declan.myers@gmail.com', 'Declan', 'Myers', 'Declan Myers', '403-730-0076', 'https://images.petshop.local/users/076.webp', 'CUSTOMER', 'CUSTOMER', 2, 13, 1, 0), +(77, 'brooke.ford', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'brooke.ford@gmail.com', 'Brooke', 'Ford', 'Brooke Ford', '403-730-0077', 'https://images.petshop.local/users/077.webp', 'CUSTOMER', 'CUSTOMER', 3, 13, 1, 0), +(78, 'micah.hamilton', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'micah.hamilton@gmail.com', 'Micah', 'Hamilton', 'Micah Hamilton', '403-730-0078', 'https://images.petshop.local/users/078.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(79, 'bianca.graham', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'bianca.graham@gmail.com', 'Bianca', 'Graham', 'Bianca Graham', '403-730-0079', 'https://images.petshop.local/users/079.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(80, 'jonah.sullivan', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'jonah.sullivan@gmail.com', 'Jonah', 'Sullivan', 'Jonah Sullivan', '403-730-0080', 'https://images.petshop.local/users/080.webp', 'CUSTOMER', 'CUSTOMER', 3, 12, 1, 0), +(81, 'tessa.wallace', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'tessa.wallace@gmail.com', 'Tessa', 'Wallace', 'Tessa Wallace', '403-730-0081', 'https://images.petshop.local/users/081.webp', 'CUSTOMER', 'CUSTOMER', 1, 11, 1, 0), +(82, 'damian.woods', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'damian.woods@gmail.com', 'Damian', 'Woods', 'Damian Woods', '403-730-0082', 'https://images.petshop.local/users/082.webp', 'CUSTOMER', 'CUSTOMER', 2, 17, 1, 0), +(83, 'riley.cole', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'riley.cole@gmail.com', 'Riley', 'Cole', 'Riley Cole', '403-730-0083', 'https://images.petshop.local/users/083.webp', 'CUSTOMER', 'CUSTOMER', 3, 36, 1, 0), +(84, 'kieran.west', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'kieran.west@gmail.com', 'Kieran', 'West', 'Kieran West', '403-730-0084', 'https://images.petshop.local/users/084.webp', 'CUSTOMER', 'CUSTOMER', 1, 5, 1, 0), +(85, 'sienna.jordan', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sienna.jordan@gmail.com', 'Sienna', 'Jordan', 'Sienna Jordan', '403-730-0085', 'https://images.petshop.local/users/085.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(86, 'finley.owens', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'finley.owens@gmail.com', 'Finley', 'Owens', 'Finley Owens', '403-730-0086', 'https://images.petshop.local/users/086.webp', 'CUSTOMER', 'CUSTOMER', 3, 26, 1, 0), +(87, 'maren.reynolds', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'maren.reynolds@gmail.com', 'Maren', 'Reynolds', 'Maren Reynolds', '403-730-0087', 'https://images.petshop.local/users/087.webp', 'CUSTOMER', 'CUSTOMER', 1, 3, 1, 0), +(88, 'asher.fisher', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'asher.fisher@gmail.com', 'Asher', 'Fisher', 'Asher Fisher', '403-730-0088', 'https://images.petshop.local/users/088.webp', 'CUSTOMER', 'CUSTOMER', 2, 11, 1, 0), +(89, 'daphne.ellis', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'daphne.ellis@gmail.com', 'Daphne', 'Ellis', 'Daphne Ellis', '403-730-0089', 'https://images.petshop.local/users/089.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), +(90, 'bennett.harrison', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'bennett.harrison@gmail.com', 'Bennett', 'Harrison', 'Bennett Harrison', '403-730-0090', 'https://images.petshop.local/users/090.webp', 'CUSTOMER', 'CUSTOMER', 1, 16, 1, 0), +(91, 'selena.gibson', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'selena.gibson@gmail.com', 'Selena', 'Gibson', 'Selena Gibson', '403-730-0091', 'https://images.petshop.local/users/091.webp', 'CUSTOMER', 'CUSTOMER', 2, 9, 1, 0), +(92, 'emmett.mcdonald', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'emmett.mcdonald@gmail.com', 'Emmett', 'Mcdonald', 'Emmett Mcdonald', '403-730-0092', 'https://images.petshop.local/users/092.webp', 'CUSTOMER', 'CUSTOMER', 3, 19, 1, 0), +(93, 'phoebe.cruz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'phoebe.cruz@gmail.com', 'Phoebe', 'Cruz', 'Phoebe Cruz', '403-730-0093', 'https://images.petshop.local/users/093.webp', 'CUSTOMER', 'CUSTOMER', 1, 2, 1, 0), +(94, 'sawyer.marshall', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'sawyer.marshall@gmail.com', 'Sawyer', 'Marshall', 'Sawyer Marshall', '403-730-0094', 'https://images.petshop.local/users/094.webp', 'CUSTOMER', 'CUSTOMER', 2, 5, 1, 0), +(95, 'keira.ortiz', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'keira.ortiz@gmail.com', 'Keira', 'Ortiz', 'Keira Ortiz', '403-730-0095', 'https://images.petshop.local/users/095.webp', 'CUSTOMER', 'CUSTOMER', 3, 30, 1, 0), +(96, 'landon.gomez', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'landon.gomez@gmail.com', 'Landon', 'Gomez', 'Landon Gomez', '403-730-0096', 'https://images.petshop.local/users/096.webp', 'CUSTOMER', 'CUSTOMER', 1, 6, 1, 0), +(97, 'rosalie.murray', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'rosalie.murray@gmail.com', 'Rosalie', 'Murray', 'Rosalie Murray', '403-730-0097', 'https://images.petshop.local/users/097.webp', 'CUSTOMER', 'CUSTOMER', 2, 4, 1, 0), +(98, 'malik.freeman', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'malik.freeman@gmail.com', 'Malik', 'Freeman', 'Malik Freeman', '403-730-0098', 'https://images.petshop.local/users/098.webp', 'CUSTOMER', 'CUSTOMER', 3, 0, 1, 0), +(99, 'esme.wells', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'esme.wells@gmail.com', 'Esme', 'Wells', 'Esme Wells', '403-730-0099', 'https://images.petshop.local/users/099.webp', 'CUSTOMER', 'CUSTOMER', 1, 0, 1, 0), +(100, 'holden.webb', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'holden.webb@gmail.com', 'Holden', 'Webb', 'Holden Webb', '403-730-0100', 'https://images.petshop.local/users/100.webp', 'CUSTOMER', 'CUSTOMER', 2, 0, 1, 0), (101, 'ai.bot', '$2a$10$mE0D/HrnCuqFeEqMy0NJwuy2jkoRYjQ7GrKcc/7QQ0r2AqnZTvyGq', 'bot@petshop.com', 'AI', 'Bot', 'AI Bot', '000-000-0000', 'https://images.petshop.local/users/bot.webp', 'STAFF', 'CUSTOMER_SERVICE', NULL, 0, 1, 0); INSERT INTO supplier (supId, supCompany, supContactFirstName, supContactLastName, supEmail, supPhone) VALUES @@ -1739,124 +1739,124 @@ INSERT INTO message (id, conversationId, senderId, content, attachmentUrl, attac (119, 30, 45, 'Order #1030 is the one I meant, and the pet is Kiki.', NULL, NULL, NULL, NULL, '2026-03-02 09:10:00', 1), (120, 30, 8, 'Thanks, the account and order are now updated on this conversation.', NULL, NULL, NULL, NULL, '2026-03-02 09:15:00', 0); -INSERT INTO activityLog (logId, userId, storeId, activity, logTimestamp) VALUES -(1, 1, 1, 'Reviewed store inventory adjustments.', '2026-01-03 08:00:00'), -(2, 2, 2, 'Approved a purchase transaction at the register.', '2026-01-03 17:00:00'), -(3, 3, 1, 'Updated a pet availability record.', '2026-01-04 02:00:00'), -(4, 4, 1, 'Completed a grooming appointment handoff.', '2026-01-04 11:00:00'), -(5, 5, 1, 'Checked a pending adoption record.', '2026-01-04 20:00:00'), -(6, 6, 1, 'Reviewed a refund request tied to an original sale.', '2026-01-05 05:00:00'), -(7, 7, 2, 'Answered a customer support conversation.', '2026-01-05 14:00:00'), -(8, 8, 2, 'Updated a product detail for the catalogue.', '2026-01-05 23:00:00'), -(9, 9, 2, 'Reviewed store inventory adjustments.', '2026-01-06 08:00:00'), -(10, 10, 2, 'Approved a purchase transaction at the register.', '2026-01-06 17:00:00'), -(11, 11, 3, 'Updated a pet availability record.', '2026-01-07 02:00:00'), -(12, 12, 3, 'Completed a grooming appointment handoff.', '2026-01-07 11:00:00'), -(13, 13, 3, 'Checked a pending adoption record.', '2026-01-07 20:00:00'), -(14, 14, 3, 'Reviewed a refund request tied to an original sale.', '2026-01-08 05:00:00'), -(15, 1, 1, 'Answered a customer support conversation.', '2026-01-08 14:00:00'), -(16, 2, 2, 'Updated a product detail for the catalogue.', '2026-01-08 23:00:00'), -(17, 3, 1, 'Reviewed store inventory adjustments.', '2026-01-09 08:00:00'), -(18, 4, 1, 'Approved a purchase transaction at the register.', '2026-01-09 17:00:00'), -(19, 5, 1, 'Updated a pet availability record.', '2026-01-10 02:00:00'), -(20, 6, 1, 'Completed a grooming appointment handoff.', '2026-01-10 11:00:00'), -(21, 7, 2, 'Checked a pending adoption record.', '2026-01-10 20:00:00'), -(22, 8, 2, 'Reviewed a refund request tied to an original sale.', '2026-01-11 05:00:00'), -(23, 9, 2, 'Answered a customer support conversation.', '2026-01-11 14:00:00'), -(24, 10, 2, 'Updated a product detail for the catalogue.', '2026-01-11 23:00:00'), -(25, 11, 3, 'Reviewed store inventory adjustments.', '2026-01-12 08:00:00'), -(26, 12, 3, 'Approved a purchase transaction at the register.', '2026-01-12 17:00:00'), -(27, 13, 3, 'Updated a pet availability record.', '2026-01-13 02:00:00'), -(28, 14, 3, 'Completed a grooming appointment handoff.', '2026-01-13 11:00:00'), -(29, 1, 1, 'Checked a pending adoption record.', '2026-01-13 20:00:00'), -(30, 2, 2, 'Reviewed a refund request tied to an original sale.', '2026-01-14 05:00:00'), -(31, 3, 1, 'Answered a customer support conversation.', '2026-01-14 14:00:00'), -(32, 4, 1, 'Updated a product detail for the catalogue.', '2026-01-14 23:00:00'), -(33, 5, 1, 'Reviewed store inventory adjustments.', '2026-01-15 08:00:00'), -(34, 6, 1, 'Approved a purchase transaction at the register.', '2026-01-15 17:00:00'), -(35, 7, 2, 'Updated a pet availability record.', '2026-01-16 02:00:00'), -(36, 8, 2, 'Completed a grooming appointment handoff.', '2026-01-16 11:00:00'), -(37, 9, 2, 'Checked a pending adoption record.', '2026-01-16 20:00:00'), -(38, 10, 2, 'Reviewed a refund request tied to an original sale.', '2026-01-17 05:00:00'), -(39, 11, 3, 'Answered a customer support conversation.', '2026-01-17 14:00:00'), -(40, 12, 3, 'Updated a product detail for the catalogue.', '2026-01-17 23:00:00'), -(41, 13, 3, 'Reviewed store inventory adjustments.', '2026-01-18 08:00:00'), -(42, 14, 3, 'Approved a purchase transaction at the register.', '2026-01-18 17:00:00'), -(43, 1, 1, 'Updated a pet availability record.', '2026-01-19 02:00:00'), -(44, 2, 2, 'Completed a grooming appointment handoff.', '2026-01-19 11:00:00'), -(45, 3, 1, 'Checked a pending adoption record.', '2026-01-19 20:00:00'), -(46, 4, 1, 'Reviewed a refund request tied to an original sale.', '2026-01-20 05:00:00'), -(47, 5, 1, 'Answered a customer support conversation.', '2026-01-20 14:00:00'), -(48, 6, 1, 'Updated a product detail for the catalogue.', '2026-01-20 23:00:00'), -(49, 7, 2, 'Reviewed store inventory adjustments.', '2026-01-21 08:00:00'), -(50, 8, 2, 'Approved a purchase transaction at the register.', '2026-01-21 17:00:00'), -(51, 9, 2, 'Updated a pet availability record.', '2026-01-22 02:00:00'), -(52, 10, 2, 'Completed a grooming appointment handoff.', '2026-01-22 11:00:00'), -(53, 11, 3, 'Checked a pending adoption record.', '2026-01-22 20:00:00'), -(54, 12, 3, 'Reviewed a refund request tied to an original sale.', '2026-01-23 05:00:00'), -(55, 13, 3, 'Answered a customer support conversation.', '2026-01-23 14:00:00'), -(56, 14, 3, 'Updated a product detail for the catalogue.', '2026-01-23 23:00:00'), -(57, 1, 1, 'Reviewed store inventory adjustments.', '2026-01-24 08:00:00'), -(58, 2, 2, 'Approved a purchase transaction at the register.', '2026-01-24 17:00:00'), -(59, 3, 1, 'Updated a pet availability record.', '2026-01-25 02:00:00'), -(60, 4, 1, 'Completed a grooming appointment handoff.', '2026-01-25 11:00:00'), -(61, 5, 1, 'Checked a pending adoption record.', '2026-01-25 20:00:00'), -(62, 6, 1, 'Reviewed a refund request tied to an original sale.', '2026-01-26 05:00:00'), -(63, 7, 2, 'Answered a customer support conversation.', '2026-01-26 14:00:00'), -(64, 8, 2, 'Updated a product detail for the catalogue.', '2026-01-26 23:00:00'), -(65, 9, 2, 'Reviewed store inventory adjustments.', '2026-01-27 08:00:00'), -(66, 10, 2, 'Approved a purchase transaction at the register.', '2026-01-27 17:00:00'), -(67, 11, 3, 'Updated a pet availability record.', '2026-01-28 02:00:00'), -(68, 12, 3, 'Completed a grooming appointment handoff.', '2026-01-28 11:00:00'), -(69, 13, 3, 'Checked a pending adoption record.', '2026-01-28 20:00:00'), -(70, 14, 3, 'Reviewed a refund request tied to an original sale.', '2026-01-29 05:00:00'), -(71, 1, 1, 'Answered a customer support conversation.', '2026-01-29 14:00:00'), -(72, 2, 2, 'Updated a product detail for the catalogue.', '2026-01-29 23:00:00'), -(73, 3, 1, 'Reviewed store inventory adjustments.', '2026-01-30 08:00:00'), -(74, 4, 1, 'Approved a purchase transaction at the register.', '2026-01-30 17:00:00'), -(75, 5, 1, 'Updated a pet availability record.', '2026-01-31 02:00:00'), -(76, 6, 1, 'Completed a grooming appointment handoff.', '2026-01-31 11:00:00'), -(77, 7, 2, 'Checked a pending adoption record.', '2026-01-31 20:00:00'), -(78, 8, 2, 'Reviewed a refund request tied to an original sale.', '2026-02-01 05:00:00'), -(79, 9, 2, 'Answered a customer support conversation.', '2026-02-01 14:00:00'), -(80, 10, 2, 'Updated a product detail for the catalogue.', '2026-02-01 23:00:00'), -(81, 11, 3, 'Reviewed store inventory adjustments.', '2026-02-02 08:00:00'), -(82, 12, 3, 'Approved a purchase transaction at the register.', '2026-02-02 17:00:00'), -(83, 13, 3, 'Updated a pet availability record.', '2026-02-03 02:00:00'), -(84, 14, 3, 'Completed a grooming appointment handoff.', '2026-02-03 11:00:00'), -(85, 1, 1, 'Checked a pending adoption record.', '2026-02-03 20:00:00'), -(86, 2, 2, 'Reviewed a refund request tied to an original sale.', '2026-02-04 05:00:00'), -(87, 3, 1, 'Answered a customer support conversation.', '2026-02-04 14:00:00'), -(88, 4, 1, 'Updated a product detail for the catalogue.', '2026-02-04 23:00:00'), -(89, 5, 1, 'Reviewed store inventory adjustments.', '2026-02-05 08:00:00'), -(90, 6, 1, 'Approved a purchase transaction at the register.', '2026-02-05 17:00:00'), -(91, 7, 2, 'Updated a pet availability record.', '2026-02-06 02:00:00'), -(92, 8, 2, 'Completed a grooming appointment handoff.', '2026-02-06 11:00:00'), -(93, 9, 2, 'Checked a pending adoption record.', '2026-02-06 20:00:00'), -(94, 10, 2, 'Reviewed a refund request tied to an original sale.', '2026-02-07 05:00:00'), -(95, 11, 3, 'Answered a customer support conversation.', '2026-02-07 14:00:00'), -(96, 12, 3, 'Updated a product detail for the catalogue.', '2026-02-07 23:00:00'), -(97, 13, 3, 'Reviewed store inventory adjustments.', '2026-02-08 08:00:00'), -(98, 14, 3, 'Approved a purchase transaction at the register.', '2026-02-08 17:00:00'), -(99, 1, 1, 'Updated a pet availability record.', '2026-02-09 02:00:00'), -(100, 2, 2, 'Completed a grooming appointment handoff.', '2026-02-09 11:00:00'), -(101, 3, 1, 'Checked a pending adoption record.', '2026-02-09 20:00:00'), -(102, 4, 1, 'Reviewed a refund request tied to an original sale.', '2026-02-10 05:00:00'), -(103, 5, 1, 'Answered a customer support conversation.', '2026-02-10 14:00:00'), -(104, 6, 1, 'Updated a product detail for the catalogue.', '2026-02-10 23:00:00'), -(105, 7, 2, 'Reviewed store inventory adjustments.', '2026-02-11 08:00:00'), -(106, 8, 2, 'Approved a purchase transaction at the register.', '2026-02-11 17:00:00'), -(107, 9, 2, 'Updated a pet availability record.', '2026-02-12 02:00:00'), -(108, 10, 2, 'Completed a grooming appointment handoff.', '2026-02-12 11:00:00'), -(109, 11, 3, 'Checked a pending adoption record.', '2026-02-12 20:00:00'), -(110, 12, 3, 'Reviewed a refund request tied to an original sale.', '2026-02-13 05:00:00'), -(111, 13, 3, 'Answered a customer support conversation.', '2026-02-13 14:00:00'), -(112, 14, 3, 'Updated a product detail for the catalogue.', '2026-02-13 23:00:00'), -(113, 1, 1, 'Reviewed store inventory adjustments.', '2026-02-14 08:00:00'), -(114, 2, 2, 'Approved a purchase transaction at the register.', '2026-02-14 17:00:00'), -(115, 3, 1, 'Updated a pet availability record.', '2026-02-15 02:00:00'), -(116, 4, 1, 'Completed a grooming appointment handoff.', '2026-02-15 11:00:00'), -(117, 5, 1, 'Checked a pending adoption record.', '2026-02-15 20:00:00'), -(118, 6, 1, 'Reviewed a refund request tied to an original sale.', '2026-02-16 05:00:00'), -(119, 7, 2, 'Answered a customer support conversation.', '2026-02-16 14:00:00'), -(120, 8, 2, 'Updated a product detail for the catalogue.', '2026-02-16 23:00:00'); +INSERT INTO activityLog (logId, userId, storeId, usernameSnapshot, fullNameSnapshot, roleSnapshot, storeNameSnapshot, activity, logTimestamp) VALUES +(1, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-03 08:00:00'), +(2, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-03 17:00:00'), +(3, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-04 02:00:00'), +(4, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-04 11:00:00'), +(5, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-04 20:00:00'), +(6, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-05 05:00:00'), +(7, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-01-05 14:00:00'), +(8, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-05 23:00:00'), +(9, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-01-06 08:00:00'), +(10, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-06 17:00:00'), +(11, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-01-07 02:00:00'), +(12, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-01-07 11:00:00'), +(13, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-01-07 20:00:00'), +(14, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-01-08 05:00:00'), +(15, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-08 14:00:00'), +(16, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-08 23:00:00'), +(17, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-09 08:00:00'), +(18, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-01-09 17:00:00'), +(19, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-10 02:00:00'), +(20, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-10 11:00:00'), +(21, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-01-10 20:00:00'), +(22, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-11 05:00:00'), +(23, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-01-11 14:00:00'), +(24, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-11 23:00:00'), +(25, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-01-12 08:00:00'), +(26, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-01-12 17:00:00'), +(27, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-01-13 02:00:00'), +(28, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-01-13 11:00:00'), +(29, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-13 20:00:00'), +(30, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-14 05:00:00'), +(31, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-14 14:00:00'), +(32, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-01-14 23:00:00'), +(33, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-15 08:00:00'), +(34, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-01-15 17:00:00'), +(35, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-01-16 02:00:00'), +(36, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-01-16 11:00:00'), +(37, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-01-16 20:00:00'), +(38, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-17 05:00:00'), +(39, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-01-17 14:00:00'), +(40, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-01-17 23:00:00'), +(41, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-01-18 08:00:00'), +(42, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-01-18 17:00:00'), +(43, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-19 02:00:00'), +(44, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Completed a grooming appointment handoff.', '2026-01-19 11:00:00'), +(45, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-19 20:00:00'), +(46, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-20 05:00:00'), +(47, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-20 14:00:00'), +(48, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-01-20 23:00:00'), +(49, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-01-21 08:00:00'), +(50, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-21 17:00:00'), +(51, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-01-22 02:00:00'), +(52, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-01-22 11:00:00'), +(53, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-01-22 20:00:00'), +(54, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-01-23 05:00:00'), +(55, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-01-23 14:00:00'), +(56, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-01-23 23:00:00'), +(57, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-24 08:00:00'), +(58, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-24 17:00:00'), +(59, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-25 02:00:00'), +(60, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-25 11:00:00'), +(61, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-01-25 20:00:00'), +(62, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-01-26 05:00:00'), +(63, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-01-26 14:00:00'), +(64, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-26 23:00:00'), +(65, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-01-27 08:00:00'), +(66, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-01-27 17:00:00'), +(67, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-01-28 02:00:00'), +(68, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-01-28 11:00:00'), +(69, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-01-28 20:00:00'), +(70, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-01-29 05:00:00'), +(71, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Answered a customer support conversation.', '2026-01-29 14:00:00'), +(72, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Updated a product detail for the catalogue.', '2026-01-29 23:00:00'), +(73, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-01-30 08:00:00'), +(74, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-01-30 17:00:00'), +(75, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-01-31 02:00:00'), +(76, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-01-31 11:00:00'), +(77, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-01-31 20:00:00'), +(78, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-01 05:00:00'), +(79, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-02-01 14:00:00'), +(80, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-02-01 23:00:00'), +(81, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-02-02 08:00:00'), +(82, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-02-02 17:00:00'), +(83, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Updated a pet availability record.', '2026-02-03 02:00:00'), +(84, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Completed a grooming appointment handoff.', '2026-02-03 11:00:00'), +(85, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Checked a pending adoption record.', '2026-02-03 20:00:00'), +(86, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-04 05:00:00'), +(87, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-02-04 14:00:00'), +(88, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-02-04 23:00:00'), +(89, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-02-05 08:00:00'), +(90, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Approved a purchase transaction at the register.', '2026-02-05 17:00:00'), +(91, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-02-06 02:00:00'), +(92, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-02-06 11:00:00'), +(93, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Checked a pending adoption record.', '2026-02-06 20:00:00'), +(94, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-07 05:00:00'), +(95, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-02-07 14:00:00'), +(96, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-02-07 23:00:00'), +(97, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Reviewed store inventory adjustments.', '2026-02-08 08:00:00'), +(98, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Approved a purchase transaction at the register.', '2026-02-08 17:00:00'), +(99, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Updated a pet availability record.', '2026-02-09 02:00:00'), +(100, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Completed a grooming appointment handoff.', '2026-02-09 11:00:00'), +(101, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-02-09 20:00:00'), +(102, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-10 05:00:00'), +(103, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Answered a customer support conversation.', '2026-02-10 14:00:00'), +(104, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Updated a product detail for the catalogue.', '2026-02-10 23:00:00'), +(105, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Reviewed store inventory adjustments.', '2026-02-11 08:00:00'), +(106, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Approved a purchase transaction at the register.', '2026-02-11 17:00:00'), +(107, 9, 2, 'lucas.turner', 'Lucas Turner', 'STAFF', 'North Branch', 'Updated a pet availability record.', '2026-02-12 02:00:00'), +(108, 10, 2, 'nina.green', 'Nina Green', 'STAFF', 'North Branch', 'Completed a grooming appointment handoff.', '2026-02-12 11:00:00'), +(109, 11, 3, 'lisa.williams', 'Lisa Williams', 'STAFF', 'West Side Store', 'Checked a pending adoption record.', '2026-02-12 20:00:00'), +(110, 12, 3, 'daniel.moore', 'Daniel Moore', 'STAFF', 'West Side Store', 'Reviewed a refund request tied to an original sale.', '2026-02-13 05:00:00'), +(111, 13, 3, 'chloe.martin', 'Chloe Martin', 'STAFF', 'West Side Store', 'Answered a customer support conversation.', '2026-02-13 14:00:00'), +(112, 14, 3, 'owen.baker', 'Owen Baker', 'STAFF', 'West Side Store', 'Updated a product detail for the catalogue.', '2026-02-13 23:00:00'), +(113, 1, 1, 'admin', 'Admin User', 'ADMIN', 'Downtown Branch', 'Reviewed store inventory adjustments.', '2026-02-14 08:00:00'), +(114, 2, 2, 'morgan.lee', 'Morgan Lee', 'ADMIN', 'North Branch', 'Approved a purchase transaction at the register.', '2026-02-14 17:00:00'), +(115, 3, 1, 'staff', 'Staff User', 'STAFF', 'Downtown Branch', 'Updated a pet availability record.', '2026-02-15 02:00:00'), +(116, 4, 1, 'sara.smith', 'Sara Smith', 'STAFF', 'Downtown Branch', 'Completed a grooming appointment handoff.', '2026-02-15 11:00:00'), +(117, 5, 1, 'david.brown', 'David Brown', 'STAFF', 'Downtown Branch', 'Checked a pending adoption record.', '2026-02-15 20:00:00'), +(118, 6, 1, 'priya.patel', 'Priya Patel', 'STAFF', 'Downtown Branch', 'Reviewed a refund request tied to an original sale.', '2026-02-16 05:00:00'), +(119, 7, 2, 'michael.johnson', 'Michael Johnson', 'STAFF', 'North Branch', 'Answered a customer support conversation.', '2026-02-16 14:00:00'), +(120, 8, 2, 'emma.davis', 'Emma Davis', 'STAFF', 'North Branch', 'Updated a product detail for the catalogue.', '2026-02-16 23:00:00'); \ No newline at end of file