Path : /home/vishqocm/pcib.in/
File Upload :
Current File : /home/vishqocm//pcib.in/database_schema.sql

-- Sliders table schema
CREATE TABLE IF NOT EXISTS `sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `subtitle` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `button_text` varchar(50) DEFAULT NULL,
  `button_url` varchar(255) DEFAULT NULL,
  `content_type` enum('image','video') NOT NULL DEFAULT 'image',
  `media_url` varchar(255) NOT NULL,
  `overlay_color` varchar(30) DEFAULT 'rgba(0, 0, 0, 0.4)',
  `text_color` varchar(30) DEFAULT '#ffffff',
  `animation` varchar(20) DEFAULT 'fade',
  `status` enum('active','inactive') NOT NULL DEFAULT 'active',
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT current_timestamp(),
  `date_updated` datetime DEFAULT NULL ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- Insert default sliders
INSERT INTO `sliders` (`title`, `subtitle`, `description`, `button_text`, `button_url`, `content_type`, `media_url`, `overlay_color`, `text_color`, `animation`, `status`, `sort_order`) VALUES
('Empowering Future Technology Leaders', 'Cutting-edge technology courses for modern careers', 'Our courses are designed by industry experts to prepare you for the challenges of tomorrow\'s technology landscape.', 'Explore Courses', 'courses.php', 'image', 'assets/img/slider/default-slide-1.jpg', 'rgba(0, 0, 0, 0.4)', '#ffffff', 'zoom', 'active', 0),
('Learn From Industry Experts', 'Get certified with our professional courses', 'Join our community of learners and gain practical skills taught by professionals with years of industry experience.', 'Join Now', 'register.php', 'image', 'assets/img/slider/default-slide-2.jpg', 'rgba(0, 36, 125, 0.5)', '#ffffff', 'fade', 'active', 1),
('Achieve Your Career Goals', 'Practical skills for real-world success', 'Transform your career with our comprehensive curriculum focused on building job-ready skills for today\'s market.', 'Get Started', 'courses.php', 'image', 'assets/img/slider/default-slide-3.jpg', 'rgba(28, 35, 49, 0.6)', '#ffffff', 'slide', 'active', 2);