-- config/seed.sql
-- Sample seed data to populate the database.

INSERT INTO users (name, email, password, role)
VALUES 
('Admin User', 'admin@example.com', 'hashedpassword', 'Admin'),
('Manager User', 'manager@example.com', 'hashedpassword', 'Manager');

INSERT INTO properties (name, address, type, amenities, ownerId)
VALUES
('Seaside Apartment', '123 Ocean Ave', 'Apartment', 'Pool, WiFi, Air Conditioning', 2),
('Mountain Cabin', '456 Mountain Rd', 'House', 'Fireplace, Hot Tub, Scenic View', 2);
