13 lines
1.1 KiB
SQL
13 lines
1.1 KiB
SQL
-- Seed the pages table with an "About Us" and "Terms of Service" page
|
|
INSERT INTO `pages` (`title`, `slug`, `content`) VALUES
|
|
('About Us', 'about-us', '<h1>About Us</h1><p>We are a leading provider of telecommunication services, committed to connecting you to the world. This page was generated by the CMS.</p>'),
|
|
('Terms of Service', 'terms-of-service', '<h1>Terms of Service</h1><p>By using our services, you agree to our terms. This is a sample page.</p>'),
|
|
('Privacy Policy', 'privacy-policy', '<h1>Privacy Policy</h1><p>Your privacy is important to us. This is a sample page.</p>');
|
|
|
|
-- Let's add some sample plans to make the landing page look populated.
|
|
INSERT INTO `plans` (`name`, `speed_mbps`, `price_monthly`, `contract_months`, `description`) VALUES
|
|
('Basic Connect', 25, 49.99, 12, 'Ideal for browsing and email.'),
|
|
('Family Streamer', 50, 69.99, 12, 'Perfect for streaming HD video on multiple devices.'),
|
|
('Super Fast Gamer', 100, 89.99, 24, 'Low latency for the ultimate gaming experience.'),
|
|
('Power User', 250, 109.99, 24, 'For heavy-duty usage, 4K streaming, and large downloads.');
|