SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `rosariosis120`
--
-- --------------------------------------------------------
--
-- Table structure for table `access_log`
--
CREATE TABLE `access_log` (
`syear` decimal(4,0) NOT NULL,
`username` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`profile` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`login_time` datetime DEFAULT NULL,
`ip_address` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`user_agent` text COLLATE utf8mb4_unicode_520_ci,
`status` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `accounting_categories`
--
CREATE TABLE `accounting_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`type` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `accounting_incomes`
--
CREATE TABLE `accounting_incomes` (
`assigned_date` date DEFAULT NULL,
`comments` text COLLATE utf8mb4_unicode_520_ci,
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`category_id` int(11) DEFAULT NULL,
`amount` decimal(14,2) NOT NULL,
`file_attached` text COLLATE utf8mb4_unicode_520_ci,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `category_id` (`category_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `accounting_payments`
--
CREATE TABLE `accounting_payments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`staff_id` int(11) DEFAULT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci,
`category_id` int(11) DEFAULT NULL,
`amount` decimal(14,2) NOT NULL,
`payment_date` date DEFAULT NULL,
`comments` text COLLATE utf8mb4_unicode_520_ci,
`file_attached` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `category_id` (`category_id`),
KEY `school_id` (`school_id`,`syear`),
KEY `accounting_payments_ind1` (`staff_id`),
KEY `accounting_payments_ind2` (`amount`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `accounting_salaries`
--
CREATE TABLE `accounting_salaries` (
`staff_id` int(11) NOT NULL,
`assigned_date` date DEFAULT NULL,
`due_date` date DEFAULT NULL,
`comments` text COLLATE utf8mb4_unicode_520_ci,
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`amount` decimal(14,2) NOT NULL,
`file_attached` text COLLATE utf8mb4_unicode_520_ci,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `staff_id` (`staff_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `address`
--
CREATE TABLE `address` (
`address_id` int(11) NOT NULL AUTO_INCREMENT,
`house_no` decimal(5,0) DEFAULT NULL,
`direction` varchar(2) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`street` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`apt` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`zipcode` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`city` text COLLATE utf8mb4_unicode_520_ci,
`state` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`mail_street` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`mail_city` text COLLATE utf8mb4_unicode_520_ci,
`mail_state` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`mail_zipcode` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`address` text COLLATE utf8mb4_unicode_520_ci,
`mail_address` text COLLATE utf8mb4_unicode_520_ci,
`phone` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`address_id`),
KEY `address_3` (`zipcode`),
KEY `address_4` (`street`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
--
-- Dumping data for table `address`
--
INSERT INTO `address` VALUES
(0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'No Address', NULL, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `address_fields`
--
CREATE TABLE `address_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`select_options` text COLLATE utf8mb4_unicode_520_ci,
`category_id` int(11) DEFAULT NULL,
`required` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`default_selection` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `address_desc_ind2` (`type`),
KEY `address_fields_ind3` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `address_field_categories`
--
CREATE TABLE `address_field_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`residence` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`mailing` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`bus` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `attendance_calendar`
--
CREATE TABLE `attendance_calendar` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`school_date` date NOT NULL,
`minutes` int(11) DEFAULT NULL,
`block` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`calendar_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`syear`,`school_id`,`school_date`,`calendar_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `attendance_calendars`
--
CREATE TABLE `attendance_calendars` (
`school_id` int(11) NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`syear` decimal(4,0) NOT NULL,
`calendar_id` int(11) NOT NULL AUTO_INCREMENT,
`default_calendar` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`calendar_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `attendance_calendars`
--
INSERT INTO `attendance_calendars` VALUES
(1, 'Main', 2024, 1, 'Y', NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `attendance_codes`
--
CREATE TABLE `attendance_codes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`type` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`state_code` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`default_code` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`table_name` int(11) DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`),
KEY `attendance_codes_ind3` (`short_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `attendance_codes`
--
INSERT INTO `attendance_codes` VALUES
(1, 2024, 1, 'Absent', 'A', 'teacher', 'A', NULL, 0, NULL, '[[regtime]]', NULL),
(2, 2024, 1, 'Present', 'P', 'teacher', 'P', 'Y', 0, NULL, '[[regtime]]', NULL),
(3, 2024, 1, 'Tardy', 'T', 'teacher', 'P', NULL, 0, NULL, '[[regtime]]', NULL),
(4, 2024, 1, 'Excused Absence', 'E', 'official', 'A', NULL, 0, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `attendance_code_categories`
--
CREATE TABLE `attendance_code_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `attendance_completed`
--
CREATE TABLE `attendance_completed` (
`staff_id` int(11) NOT NULL,
`school_date` date NOT NULL,
`period_id` int(11) NOT NULL,
`table_name` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`staff_id`,`school_date`,`period_id`,`table_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `attendance_day`
--
CREATE TABLE `attendance_day` (
`student_id` int(11) NOT NULL,
`school_date` date NOT NULL,
`minutes_present` int(11) DEFAULT NULL,
`state_value` decimal(2,1) DEFAULT NULL,
`syear` decimal(4,0) DEFAULT NULL,
`marking_period_id` int(11) DEFAULT NULL,
`comment` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`,`school_date`),
KEY `marking_period_id` (`marking_period_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `attendance_period`
--
CREATE TABLE `attendance_period` (
`student_id` int(11) NOT NULL,
`school_date` date NOT NULL,
`period_id` int(11) NOT NULL,
`attendance_code` int(11) DEFAULT NULL,
`attendance_teacher_code` int(11) DEFAULT NULL,
`attendance_reason` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`admin` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`course_period_id` int(11) DEFAULT NULL,
`marking_period_id` int(11) DEFAULT NULL,
`comment` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`,`school_date`,`period_id`),
KEY `course_period_id` (`course_period_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `attendance_period_ind1` (`student_id`),
KEY `attendance_period_ind2` (`period_id`),
KEY `attendance_period_ind4` (`school_date`),
KEY `attendance_period_ind5` (`attendance_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `billing_fees`
--
CREATE TABLE `billing_fees` (
`student_id` int(11) NOT NULL,
`assigned_date` date DEFAULT NULL,
`due_date` date DEFAULT NULL,
`comments` text COLLATE utf8mb4_unicode_520_ci,
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`amount` decimal(14,2) NOT NULL,
`file_attached` text COLLATE utf8mb4_unicode_520_ci,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`waived_fee_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`created_by` text COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `billing_payments`
--
CREATE TABLE `billing_payments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`amount` decimal(14,2) NOT NULL,
`payment_date` date DEFAULT NULL,
`comments` text COLLATE utf8mb4_unicode_520_ci,
`refunded_payment_id` int(11) DEFAULT NULL,
`lunch_payment` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`file_attached` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`created_by` text COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`),
KEY `school_id` (`school_id`,`syear`),
KEY `billing_payments_ind2` (`amount`),
KEY `billing_payments_ind3` (`refunded_payment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `calendar_events`
--
CREATE TABLE `calendar_events` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`school_date` date DEFAULT NULL,
`title` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `config`
--
CREATE TABLE `config` (
`school_id` int(11) NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`config_value` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `config`
--
INSERT INTO `config` VALUES
(0, 'LOGIN', 'Yes', '[[regtime]]', '[[regtime]]'),
(0, 'VERSION', '12.0', '[[regtime]]', NULL),
(0, 'TITLE', 'Rosario Student Information System', '[[regtime]]', NULL),
(0, 'NAME', 'RosarioSIS', '[[regtime]]', NULL),
(0, 'MODULES', 'a:13:{s:12:"School_Setup";b:1;s:8:"Students";b:1;s:5:"Users";b:1;s:10:"Scheduling";b:1;s:6:"Grades";b:1;s:10:"Attendance";b:1;s:11:"Eligibility";b:1;s:10:"Discipline";b:1;s:10:"Accounting";b:1;s:15:"Student_Billing";b:1;s:12:"Food_Service";b:1;s:9:"Resources";b:1;s:6:"Custom";b:1;}', '[[regtime]]', NULL),
(0, 'PLUGINS', 'a:1:{s:6:"Moodle";b:0;}', '[[regtime]]', NULL),
(0, 'THEME', 'FlatSIS', '[[regtime]]', NULL),
(0, 'THEME_FORCE', NULL, '[[regtime]]', NULL),
(0, 'CREATE_USER_ACCOUNT', NULL, '[[regtime]]', NULL),
(0, 'CREATE_STUDENT_ACCOUNT', NULL, '[[regtime]]', NULL),
(0, 'CREATE_STUDENT_ACCOUNT_AUTOMATIC_ACTIVATION', NULL, '[[regtime]]', NULL),
(0, 'CREATE_STUDENT_ACCOUNT_DEFAULT_SCHOOL', NULL, '[[regtime]]', NULL),
(0, 'STUDENTS_EMAIL_FIELD', NULL, '[[regtime]]', NULL),
(0, 'DISPLAY_NAME', 'CONCAT(FIRST_NAME,coalesce(NULLIF(CONCAT('' '',MIDDLE_NAME,'' ''),'' ''),'' ''),LAST_NAME)', '[[regtime]]', NULL),
(1, 'DISPLAY_NAME', 'CONCAT(FIRST_NAME,coalesce(NULLIF(CONCAT('' '',MIDDLE_NAME,'' ''),'' ''),'' ''),LAST_NAME)', '[[regtime]]', NULL),
(0, 'LIMIT_EXISTING_CONTACTS_ADDRESSES', NULL, '[[regtime]]', NULL),
(0, 'FAILED_LOGIN_LIMIT', '30', '[[regtime]]', NULL),
(0, 'PASSWORD_STRENGTH', '2', '[[regtime]]', NULL),
(0, 'FORCE_PASSWORD_CHANGE_ON_FIRST_LOGIN', NULL, '[[regtime]]', NULL),
(0, 'GRADEBOOK_CONFIG_ADMIN_OVERRIDE', NULL, '[[regtime]]', NULL),
(0, 'REMOVE_ACCESS_USERNAME_PREFIX_ADD', NULL, '[[regtime]]', NULL),
(1, 'SCHOOL_SYEAR_OVER_2_YEARS', 'Y', '[[regtime]]', NULL),
(1, 'ATTENDANCE_FULL_DAY_MINUTES', '0', '[[regtime]]', NULL),
(1, 'STUDENTS_USE_MAILING', NULL, '[[regtime]]', NULL),
(1, 'CURRENCY', '$', '[[regtime]]', NULL),
(1, 'DECIMAL_SEPARATOR', '.', '[[regtime]]', NULL),
(1, 'THOUSANDS_SEPARATOR', ',', '[[regtime]]', NULL),
(1, 'CLASS_RANK_CALCULATE_MPS', NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `courses`
--
CREATE TABLE `courses` (
`syear` decimal(4,0) NOT NULL,
`course_id` int(11) NOT NULL AUTO_INCREMENT,
`subject_id` int(11) NOT NULL,
`school_id` int(11) NOT NULL,
`grade_level` int(11) DEFAULT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`credit_hours` decimal(6,2) DEFAULT NULL,
`description` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`course_id`),
KEY `school_id` (`school_id`,`syear`),
KEY `courses_ind2` (`subject_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Stand-in structure for view `course_details`
--
CREATE TABLE `course_details` (
`school_id` int(11)
,`syear` decimal(4,0)
,`marking_period_id` int(11)
,`subject_id` int(11)
,`course_id` int(11)
,`course_period_id` int(11)
,`teacher_id` int(11)
,`course_title` varchar(100)
,`cp_title` text
,`grade_scale_id` int(11)
,`mp` varchar(3)
,`credits` decimal(6,2)
);
-- --------------------------------------------------------
--
-- Table structure for table `course_periods`
--
CREATE TABLE `course_periods` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`course_period_id` int(11) NOT NULL AUTO_INCREMENT,
`course_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`mp` varchar(3) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`marking_period_id` int(11) NOT NULL,
`teacher_id` int(11) NOT NULL,
`secondary_teacher_id` int(11) DEFAULT NULL,
`room` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`total_seats` decimal(10,0) DEFAULT NULL,
`filled_seats` decimal(10,0) DEFAULT NULL,
`does_attendance` text COLLATE utf8mb4_unicode_520_ci,
`does_honor_roll` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`does_class_rank` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`gender_restriction` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`house_restriction` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`availability` decimal(10,0) DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`calendar_id` int(11) DEFAULT NULL,
`half_day` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`does_breakoff` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`grade_scale_id` int(11) DEFAULT NULL,
`credits` decimal(6,2) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`course_period_id`),
KEY `course_id` (`course_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `teacher_id` (`teacher_id`),
KEY `secondary_teacher_id` (`secondary_teacher_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `course_period_school_periods`
--
CREATE TABLE `course_period_school_periods` (
`course_period_school_periods_id` int(11) NOT NULL AUTO_INCREMENT,
`course_period_id` int(11) NOT NULL,
`period_id` int(11) NOT NULL,
`days` varchar(7) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`course_period_school_periods_id`),
UNIQUE KEY `course_period_id` (`course_period_id`,`period_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `course_subjects`
--
CREATE TABLE `course_subjects` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`subject_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`subject_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `custom_fields`
--
CREATE TABLE `custom_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`select_options` text COLLATE utf8mb4_unicode_520_ci,
`category_id` int(11) DEFAULT NULL,
`required` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`default_selection` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `custom_desc_ind2` (`type`),
KEY `custom_fields_ind3` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=200000012 ;
--
-- Dumping data for table `custom_fields`
--
INSERT INTO `custom_fields` VALUES
(200000000, 'select', 'Gender', 0, 'Male\r\nFemale', 1, NULL, NULL, '[[regtime]]', NULL),
(200000001, 'select', 'Ethnicity', 1, 'White, Non-Hispanic\r\nBlack, Non-Hispanic\r\nAmer. Indian or Alaskan Native\r\nAsian or Pacific Islander\r\nHispanic\r\nOther', 1, NULL, NULL, '[[regtime]]', NULL),
(200000002, 'text', 'Common Name', 2, NULL, 1, NULL, NULL, '[[regtime]]', NULL),
(200000003, 'text', 'Social Security', 3, NULL, 1, NULL, NULL, '[[regtime]]', NULL),
(200000004, 'date', 'Birthdate', 4, NULL, 1, NULL, NULL, '[[regtime]]', NULL),
(200000005, 'select', 'Language', 5, 'English\r\nSpanish', 1, NULL, NULL, '[[regtime]]', NULL),
(200000006, 'text', 'Physician', 6, NULL, 2, NULL, NULL, '[[regtime]]', NULL),
(200000007, 'text', 'Physician Phone', 7, NULL, 2, NULL, NULL, '[[regtime]]', NULL),
(200000008, 'text', 'Preferred Hospital', 8, NULL, 2, NULL, NULL, '[[regtime]]', NULL),
(200000009, 'textarea', 'Comments', 9, NULL, 2, NULL, NULL, '[[regtime]]', NULL),
(200000010, 'radio', 'Has Doctor''s Note', 10, NULL, 2, NULL, NULL, '[[regtime]]', NULL),
(200000011, 'textarea', 'Doctor''s Note Comments', 11, NULL, 2, NULL, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `discipline_fields`
--
CREATE TABLE `discipline_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`data_type` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`column_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `discipline_fields`
--
INSERT INTO `discipline_fields` VALUES
(1, 'Violation', '', 'multiple_checkbox', 'CATEGORY_1', '[[regtime]]', NULL),
(2, 'Detention Assigned', '', 'multiple_radio', 'CATEGORY_2', '[[regtime]]', NULL),
(3, 'Parents Contacted By Teacher', '', 'checkbox', 'CATEGORY_3', '[[regtime]]', NULL),
(4, 'Parent Contacted by Administrator', '', 'text', 'CATEGORY_4', '[[regtime]]', NULL),
(5, 'Suspensions (Office Only)', '', 'multiple_checkbox', 'CATEGORY_5', '[[regtime]]', NULL),
(6, 'Comments', '', 'textarea', 'CATEGORY_6', '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `discipline_field_usage`
--
CREATE TABLE `discipline_field_usage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`discipline_field_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`select_options` text COLLATE utf8mb4_unicode_520_ci,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `discipline_field_usage`
--
INSERT INTO `discipline_field_usage` VALUES
(1, 3, 2024, 1, 'Parents Contacted by Teacher', '', 4, '[[regtime]]', NULL),
(2, 4, 2024, 1, 'Parent Contacted by Administrator', '', 5, '[[regtime]]', NULL),
(3, 6, 2024, 1, 'Comments', '', 6, '[[regtime]]', NULL),
(4, 1, 2024, 1, 'Violation', 'Skipping Class\r\nProfanity, vulgarity, offensive language\r\nInsubordination (Refusal to Comply, Disrespectful Behavior)\r\nInebriated (Alcohol or Drugs)\r\nTalking out of Turn\r\nHarassment\r\nFighting\r\nPublic Display of Affection\r\nOther', 1, '[[regtime]]', NULL),
(5, 2, 2024, 1, 'Detention Assigned', '10 Minutes\r\n20 Minutes\r\n30 Minutes\r\nDiscuss Suspension', 2, '[[regtime]]', NULL),
(6, 5, 2024, 1, 'Suspensions (Office Only)', 'Half Day\r\nIn School Suspension\r\n1 Day\r\n2 Days\r\n3 Days\r\n5 Days\r\n7 Days\r\nExpulsion', 3, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `discipline_referrals`
--
CREATE TABLE `discipline_referrals` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`student_id` int(11) NOT NULL,
`school_id` int(11) NOT NULL,
`staff_id` int(11) DEFAULT NULL,
`entry_date` date DEFAULT NULL,
`referral_date` date DEFAULT NULL,
`category_1` text COLLATE utf8mb4_unicode_520_ci,
`category_2` text COLLATE utf8mb4_unicode_520_ci,
`category_3` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`category_4` text COLLATE utf8mb4_unicode_520_ci,
`category_5` text COLLATE utf8mb4_unicode_520_ci,
`category_6` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`),
KEY `staff_id` (`staff_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `eligibility`
--
CREATE TABLE `eligibility` (
`student_id` int(11) NOT NULL,
`syear` decimal(4,0) DEFAULT NULL,
`school_date` date DEFAULT NULL,
`period_id` int(11) DEFAULT NULL,
`eligibility_code` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`course_period_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
KEY `course_period_id` (`course_period_id`),
KEY `eligibility_ind1` (`student_id`,`course_period_id`,`school_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `eligibility_activities`
--
CREATE TABLE `eligibility_activities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`comment` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `eligibility_activities`
--
INSERT INTO `eligibility_activities` VALUES
(1, 2024, 1, 'Boy''s Basketball', '2024-10-01', '2025-04-12', NULL, '[[regtime]]', NULL),
(2, 2024, 1, 'Chess Team', '2024-09-03', '2025-06-05', NULL, '[[regtime]]', NULL),
(3, 2024, 1, 'Girl''s Basketball', '2024-10-01', '2025-04-12', NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `eligibility_completed`
--
CREATE TABLE `eligibility_completed` (
`staff_id` int(11) NOT NULL,
`school_date` date NOT NULL,
`period_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`staff_id`,`school_date`,`period_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Stand-in structure for view `enroll_grade`
--
CREATE TABLE `enroll_grade` (
`id` int(11)
,`syear` decimal(4,0)
,`school_id` int(11)
,`student_id` int(11)
,`start_date` date
,`end_date` date
,`short_name` varchar(3)
,`title` varchar(50)
);
-- --------------------------------------------------------
--
-- Table structure for table `food_service_accounts`
--
CREATE TABLE `food_service_accounts` (
`account_id` int(11) NOT NULL,
`balance` decimal(9,2) NOT NULL,
`transaction_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `food_service_accounts`
--
INSERT INTO `food_service_accounts` VALUES
(1, 0.00, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `food_service_categories`
--
CREATE TABLE `food_service_categories` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`menu_id` int(11) NOT NULL,
`title` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`category_id`),
UNIQUE KEY `food_service_categories_title` (`school_id`,`menu_id`,`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `food_service_categories`
--
INSERT INTO `food_service_categories` VALUES
(1, 1, 1, 'Lunch Items', 1, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `food_service_items`
--
CREATE TABLE `food_service_items` (
`item_id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`description` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`icon` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`price` decimal(9,2) NOT NULL,
`price_reduced` decimal(9,2) DEFAULT NULL,
`price_free` decimal(9,2) DEFAULT NULL,
`price_staff` decimal(9,2) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`item_id`),
UNIQUE KEY `food_service_items_short_name` (`school_id`,`short_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `food_service_items`
--
INSERT INTO `food_service_items` VALUES
(1, 1, 'HOTL', 1, 'Student Lunch', 'Lunch.png', 1.65, 0.40, 0.00, 2.35, '[[regtime]]', NULL),
(2, 1, 'MILK', 2, 'Milk', 'Milk.png', 0.25, NULL, NULL, 0.50, '[[regtime]]', NULL),
(3, 1, 'XTRA', 3, 'Extra', 'Sandwich.png', 0.50, NULL, NULL, 1.00, '[[regtime]]', NULL),
(4, 1, 'PIZZA', 4, 'Extra Pizza', 'Pizza.png', 1.00, NULL, NULL, 1.00, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `food_service_menus`
--
CREATE TABLE `food_service_menus` (
`menu_id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`title` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`menu_id`),
UNIQUE KEY `food_service_menus_title` (`school_id`,`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `food_service_menus`
--
INSERT INTO `food_service_menus` VALUES
(1, 1, 'Lunch', 1, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `food_service_menu_items`
--
CREATE TABLE `food_service_menu_items` (
`menu_item_id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`menu_id` int(11) NOT NULL,
`item_id` int(11) NOT NULL,
`category_id` int(11) DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`does_count` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`menu_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `food_service_menu_items`
--
INSERT INTO `food_service_menu_items` VALUES
(1, 1, 1, 1, 1, NULL, NULL, '[[regtime]]', NULL),
(2, 1, 1, 2, 1, NULL, NULL, '[[regtime]]', NULL),
(3, 1, 1, 3, 1, NULL, NULL, '[[regtime]]', NULL),
(4, 1, 1, 4, 1, NULL, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `food_service_staff_accounts`
--
CREATE TABLE `food_service_staff_accounts` (
`staff_id` int(11) NOT NULL,
`status` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`barcode` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`balance` decimal(9,2) NOT NULL,
`transaction_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`staff_id`),
UNIQUE KEY `barcode` (`barcode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `food_service_staff_transactions`
--
CREATE TABLE `food_service_staff_transactions` (
`transaction_id` int(11) NOT NULL AUTO_INCREMENT,
`staff_id` int(11) NOT NULL,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`balance` decimal(9,2) DEFAULT NULL,
`timestamp` datetime DEFAULT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`description` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`seller_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`transaction_id`),
KEY `staff_id` (`staff_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `food_service_staff_transaction_items`
--
CREATE TABLE `food_service_staff_transaction_items` (
`item_id` int(11) NOT NULL,
`transaction_id` int(11) NOT NULL,
`menu_item_id` int(11) DEFAULT NULL COMMENT 'References food_service_menu_items(menu_item_id)',
`amount` decimal(9,2) DEFAULT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`description` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`item_id`,`transaction_id`),
KEY `transaction_id` (`transaction_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `food_service_student_accounts`
--
CREATE TABLE `food_service_student_accounts` (
`student_id` int(11) NOT NULL,
`account_id` int(11) NOT NULL,
`discount` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`status` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`barcode` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`),
UNIQUE KEY `barcode` (`barcode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `food_service_student_accounts`
--
INSERT INTO `food_service_student_accounts` VALUES
(1, 1, NULL, NULL, '1000001', '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `food_service_transactions`
--
CREATE TABLE `food_service_transactions` (
`transaction_id` int(11) NOT NULL AUTO_INCREMENT,
`account_id` int(11) NOT NULL,
`student_id` int(11) DEFAULT NULL,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`discount` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`balance` decimal(9,2) DEFAULT NULL,
`timestamp` datetime DEFAULT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`description` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`seller_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`transaction_id`),
KEY `student_id` (`student_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `food_service_transaction_items`
--
CREATE TABLE `food_service_transaction_items` (
`item_id` int(11) NOT NULL,
`transaction_id` int(11) NOT NULL,
`menu_item_id` int(11) DEFAULT NULL COMMENT 'References food_service_menu_items(menu_item_id)',
`amount` decimal(9,2) DEFAULT NULL,
`discount` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`description` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`item_id`,`transaction_id`),
KEY `transaction_id` (`transaction_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `gradebook_assignments`
--
CREATE TABLE `gradebook_assignments` (
`assignment_id` int(11) NOT NULL AUTO_INCREMENT,
`staff_id` int(11) NOT NULL,
`marking_period_id` int(11) NOT NULL,
`course_period_id` int(11) DEFAULT NULL,
`course_id` int(11) DEFAULT NULL,
`assignment_type_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`assigned_date` date DEFAULT NULL,
`due_date` date DEFAULT NULL,
`points` int(11) NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_520_ci,
`file` text COLLATE utf8mb4_unicode_520_ci,
`default_points` int(11) DEFAULT NULL,
`submission` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`weight` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`assignment_id`),
KEY `staff_id` (`staff_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `course_period_id` (`course_period_id`),
KEY `course_id` (`course_id`),
KEY `gradebook_assignments_ind3` (`assignment_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `gradebook_assignment_types`
--
CREATE TABLE `gradebook_assignment_types` (
`assignment_type_id` int(11) NOT NULL AUTO_INCREMENT,
`staff_id` int(11) NOT NULL,
`course_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`final_grade_percent` decimal(6,5) DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`color` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_mp` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`assignment_type_id`),
KEY `staff_id` (`staff_id`),
KEY `course_id` (`course_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `gradebook_grades`
--
CREATE TABLE `gradebook_grades` (
`student_id` int(11) NOT NULL,
`period_id` int(11) DEFAULT NULL,
`course_period_id` int(11) NOT NULL,
`assignment_id` int(11) NOT NULL,
`points` decimal(6,2) DEFAULT NULL,
`comment` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`,`assignment_id`,`course_period_id`),
KEY `course_period_id` (`course_period_id`),
KEY `gradebook_grades_ind1` (`assignment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `grades_completed`
--
CREATE TABLE `grades_completed` (
`staff_id` int(11) NOT NULL,
`marking_period_id` int(11) NOT NULL,
`course_period_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`staff_id`,`marking_period_id`,`course_period_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `course_period_id` (`course_period_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `history_marking_periods`
--
CREATE TABLE `history_marking_periods` (
`parent_id` int(11) DEFAULT NULL,
`mp_type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`post_end_date` date DEFAULT NULL,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) DEFAULT NULL,
`marking_period_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`marking_period_id`),
KEY `history_marking_period_ind1` (`school_id`),
KEY `history_marking_period_ind2` (`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `lunch_period`
--
CREATE TABLE `lunch_period` (
`student_id` int(11) NOT NULL,
`school_date` date NOT NULL,
`period_id` int(11) NOT NULL,
`attendance_code` int(11) DEFAULT NULL,
`attendance_teacher_code` int(11) DEFAULT NULL,
`attendance_reason` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`admin` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`course_period_id` int(11) DEFAULT NULL,
`marking_period_id` int(11) DEFAULT NULL,
`comment` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`table_name` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`,`school_date`,`period_id`),
KEY `course_period_id` (`course_period_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `lunch_period_ind2` (`period_id`),
KEY `lunch_period_ind3` (`attendance_code`),
KEY `lunch_period_ind4` (`school_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Stand-in structure for view `marking_periods`
--
CREATE TABLE `marking_periods` (
`marking_period_id` int(11)
,`mp_source` varchar(7)
,`syear` decimal(4,0)
,`school_id` int(11)
,`mp_type` varchar(20)
,`title` varchar(50)
,`short_name` varchar(10)
,`sort_order` decimal(10,0)
,`parent_id` bigint(11)
,`grandparent_id` bigint(20)
,`start_date` date
,`end_date` date
,`post_start_date` date
,`post_end_date` date
,`does_grades` varchar(1)
,`does_comments` varchar(1)
);
-- --------------------------------------------------------
--
-- Table structure for table `moodlexrosario`
--
CREATE TABLE `moodlexrosario` (
`column` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`rosario_id` int(11) NOT NULL,
`moodle_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`column`,`rosario_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `moodlexrosario`
--
INSERT INTO `moodlexrosario` VALUES
('staff_id', 1, 2, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `people`
--
CREATE TABLE `people` (
`person_id` int(11) NOT NULL AUTO_INCREMENT,
`last_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`first_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`middle_name` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`person_id`),
KEY `people_1` (`last_name`,`first_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `people_fields`
--
CREATE TABLE `people_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`select_options` text COLLATE utf8mb4_unicode_520_ci,
`category_id` int(11) DEFAULT NULL,
`required` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`default_selection` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `people_desc_ind2` (`type`),
KEY `people_fields_ind3` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `people_field_categories`
--
CREATE TABLE `people_field_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`custody` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`emergency` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `people_join_contacts`
--
CREATE TABLE `people_join_contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`person_id` int(11) DEFAULT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`value` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `people_join_contacts_ind1` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `portal_notes`
--
CREATE TABLE `portal_notes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_520_ci,
`sort_order` decimal(10,0) DEFAULT NULL,
`published_user` int(11) DEFAULT NULL,
`published_date` datetime DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`published_profiles` text COLLATE utf8mb4_unicode_520_ci,
`file_attached` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `portal_polls`
--
CREATE TABLE `portal_polls` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`votes_number` int(11) DEFAULT NULL,
`display_votes` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`published_user` int(11) DEFAULT NULL,
`published_date` datetime DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`published_profiles` text COLLATE utf8mb4_unicode_520_ci,
`students_teacher_id` int(11) DEFAULT NULL,
`excluded_users` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `portal_poll_questions`
--
CREATE TABLE `portal_poll_questions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`portal_poll_id` int(11) NOT NULL,
`question` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`options` text COLLATE utf8mb4_unicode_520_ci,
`votes` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `profile_exceptions`
--
CREATE TABLE `profile_exceptions` (
`profile_id` int(11) NOT NULL,
`modname` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`can_use` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`can_edit` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`profile_id`,`modname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `profile_exceptions`
--
INSERT INTO `profile_exceptions` VALUES
(0, 'Attendance/DailySummary.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Attendance/StudentSummary.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Custom/Registration.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Eligibility/Student.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Eligibility/StudentList.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Food_Service/Accounts.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Food_Service/DailyMenus.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Food_Service/MenuItems.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Food_Service/Statements.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Grades/FinalGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Grades/GPARankList.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Grades/ProgressReports.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Grades/ReportCards.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Grades/StudentAssignments.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Grades/StudentGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Grades/Transcripts.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Resources/Resources.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Scheduling/Courses.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Scheduling/PrintClassPictures.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Scheduling/PrintSchedules.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Scheduling/Requests.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Scheduling/Schedule.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'School_Setup/Calendar.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'School_Setup/MarkingPeriods.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'School_Setup/Schools.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Student_Billing/DailyTransactions.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Student_Billing/Statements.php&_ROSARIO_PDF', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Student_Billing/StudentFees.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Student_Billing/StudentPayments.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Students/Student.php', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Students/Student.php&category_id=1', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Students/Student.php&category_id=3', 'Y', NULL, '[[regtime]]', NULL),
(0, 'Users/Preferences.php', 'Y', NULL, '[[regtime]]', NULL),
(1, 'Accounting/Categories.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Accounting/DailyTransactions.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Accounting/Expenses.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Accounting/Incomes.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Accounting/Salaries.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Accounting/StaffBalances.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Accounting/StaffPayments.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Accounting/Statements.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/AddAbsences.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/Administration.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/AttendanceCodes.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/DailySummary.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/DuplicateAttendance.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/FixDailyAttendance.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/Percent.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Attendance/TeacherCompletion.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Custom/AttendanceSummary.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Custom/CreateParents.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Custom/MyReport.php', NULL, NULL, '[[regtime]]', NULL),
(1, 'Custom/NotifyParents.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Custom/Registration.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Custom/RemoveAccess.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/CategoryBreakdown.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/CategoryBreakdownTime.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/DisciplineForm.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/MakeReferral.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/ReferralForm.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/ReferralLog.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/Referrals.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Discipline/StudentFieldBreakdown.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Eligibility/Activities.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Eligibility/AddActivity.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Eligibility/EntryTimes.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Eligibility/Student.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Eligibility/StudentList.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Eligibility/TeacherCompletion.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/Accounts.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/ActivityReport.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/DailyMenus.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/Kiosk.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/MenuItems.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/MenuReports.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/Menus.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/Reminders.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/ServeMenus.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/Statements.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/Transactions.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Food_Service/TransactionsReport.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/Configuration.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/EditHistoryMarkingPeriods.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/EditReportCardGrades.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/FinalGrades.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/FixGPA.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/GPARankList.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/GradeBreakdown.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/HonorRoll.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/MassCreateAssignments.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/ProgressReports.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/ReportCardCommentCodes.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/ReportCardComments.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/ReportCardGrades.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/ReportCards.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/StudentGrades.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/TeacherCompletion.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Grades/Transcripts.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Resources/Resources.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/AddDrop.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/Courses.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/IncompleteSchedules.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/MassDrops.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/MassRequests.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/MassSchedule.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/PrintClassLists.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/PrintClassPictures.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/PrintRequests.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/PrintSchedules.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/Requests.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/RequestsReport.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/Schedule.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/Scheduler.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Scheduling/ScheduleReport.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/AccessLog.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/Calendar.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/Configuration.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/CopySchool.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/DatabaseBackup.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/GradeLevels.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/MarkingPeriods.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/Periods.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/PortalNotes.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/PortalPolls.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/Rollover.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/SchoolFields.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'School_Setup/Schools.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/DailyTransactions.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/Fees.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/MassAssignFees.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/MassAssignPayments.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/Statements.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/StudentBalances.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/StudentFees.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/StudentPayments.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Student_Billing/StudentPayments.php&modfunc=remove', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/AddDrop.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/AddUsers.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/AdvancedReport.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/AssignOtherInfo.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/EnrollmentCodes.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/Letters.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/PrintStudentInfo.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/Student.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/Student.php&category_id=1', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/Student.php&category_id=2', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/Student.php&category_id=3', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/Student.php&include=General_Info&student_id=new', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/StudentBreakdown.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/StudentFields.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Students/StudentLabels.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/AddStudents.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/Exceptions.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/Preferences.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/Profiles.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/TeacherPrograms.php&include=Attendance/TakeAttendance.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/TeacherPrograms.php&include=Eligibility/EnterEligibility.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/TeacherPrograms.php&include=Grades/AnomalousGrades.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/TeacherPrograms.php&include=Grades/Grades.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/TeacherPrograms.php&include=Grades/InputFinalGrades.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/User.php', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/User.php&category_id=1', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/User.php&category_id=1&schools', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/User.php&category_id=1&user_profile', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/User.php&category_id=2', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/User.php&category_id=3', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/User.php&staff_id=new', 'Y', 'Y', '[[regtime]]', NULL),
(1, 'Users/UserFields.php', 'Y', 'Y', '[[regtime]]', NULL),
(2, 'Accounting/Salaries.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Accounting/StaffPayments.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Accounting/Statements.php&_ROSARIO_PDF', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Attendance/DailySummary.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Attendance/TakeAttendance.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Discipline/MakeReferral.php', 'Y', 'Y', '[[regtime]]', NULL),
(2, 'Discipline/Referrals.php', 'Y', 'Y', '[[regtime]]', NULL),
(2, 'Eligibility/EnterEligibility.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Food_Service/Accounts.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Food_Service/DailyMenus.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Food_Service/MenuItems.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Food_Service/Statements.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/AnomalousGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/Assignments-new.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/Assignments.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/Configuration.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/FinalGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/GradebookBreakdown.php', 'Y', 'Y', '[[regtime]]', NULL),
(2, 'Grades/Grades.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/InputFinalGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/ProgressReports.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/ReportCardCommentCodes.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/ReportCardComments.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/ReportCardGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/ReportCards.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Grades/StudentGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Resources/Resources.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Scheduling/Courses.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Scheduling/PrintClassLists.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Scheduling/PrintClassPictures.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Scheduling/PrintSchedules.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Scheduling/Schedule.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'School_Setup/Calendar.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'School_Setup/MarkingPeriods.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'School_Setup/Schools.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Students/AddUsers.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Students/AdvancedReport.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Students/Letters.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Students/Student.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Students/Student.php&category_id=1', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Students/Student.php&category_id=3', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Students/Student.php&category_id=4', 'Y', 'Y', '[[regtime]]', NULL),
(2, 'Students/StudentLabels.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Users/Preferences.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Users/User.php', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Users/User.php&category_id=1', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Users/User.php&category_id=2', 'Y', NULL, '[[regtime]]', NULL),
(2, 'Users/User.php&category_id=3', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Attendance/DailySummary.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Custom/Registration.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Eligibility/Student.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Eligibility/StudentList.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Food_Service/Accounts.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Food_Service/DailyMenus.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Food_Service/MenuItems.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Food_Service/Statements.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Grades/FinalGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Grades/GPARankList.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Grades/ProgressReports.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Grades/ReportCards.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Grades/StudentAssignments.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Grades/StudentGrades.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Grades/Transcripts.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Resources/Resources.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Scheduling/Courses.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Scheduling/PrintClassPictures.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Scheduling/PrintSchedules.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Scheduling/Requests.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Scheduling/Schedule.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'School_Setup/Calendar.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'School_Setup/MarkingPeriods.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'School_Setup/Schools.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Student_Billing/DailyTransactions.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Student_Billing/Statements.php&_ROSARIO_PDF', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Student_Billing/StudentFees.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Student_Billing/StudentPayments.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Students/Student.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Students/Student.php&category_id=1', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Students/Student.php&category_id=3', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Users/Preferences.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Users/User.php', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Users/User.php&category_id=1', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Users/User.php&category_id=2', 'Y', NULL, '[[regtime]]', NULL),
(3, 'Users/User.php&category_id=3', 'Y', NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `program_config`
--
CREATE TABLE `program_config` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`program` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`value` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `program_config`
--
INSERT INTO `program_config` VALUES
(2024, 1, 'eligibility', 'START_DAY', '1', '[[regtime]]', NULL),
(2024, 1, 'eligibility', 'START_HOUR', '23', '[[regtime]]', NULL),
(2024, 1, 'eligibility', 'START_MINUTE', '30', '[[regtime]]', NULL),
(2024, 1, 'eligibility', 'START_M', 'PM', '[[regtime]]', NULL),
(2024, 1, 'eligibility', 'END_DAY', '5', '[[regtime]]', NULL),
(2024, 1, 'eligibility', 'END_HOUR', '23', '[[regtime]]', NULL),
(2024, 1, 'eligibility', 'END_MINUTE', '30', '[[regtime]]', NULL),
(2024, 1, 'eligibility', 'END_M', 'PM', '[[regtime]]', NULL),
(2024, 1, 'attendance', 'ATTENDANCE_EDIT_DAYS_BEFORE', NULL, '[[regtime]]', NULL),
(2024, 1, 'attendance', 'ATTENDANCE_EDIT_DAYS_AFTER', NULL, '[[regtime]]', NULL),
(2024, 1, 'grades', 'GRADES_DOES_LETTER_PERCENT', '0', '[[regtime]]', NULL),
(2024, 1, 'grades', 'GRADES_HIDE_NON_ATTENDANCE_COMMENT', NULL, '[[regtime]]', NULL),
(2024, 1, 'grades', 'GRADES_TEACHER_ALLOW_EDIT', NULL, '[[regtime]]', NULL),
(2024, 1, 'grades', 'GRADES_GRADEBOOK_TEACHER_ALLOW_EDIT', 'Y', '[[regtime]]', NULL),
(2024, 1, 'grades', 'GRADES_DO_STATS_STUDENTS_PARENTS', NULL, '[[regtime]]', NULL),
(2024, 1, 'grades', 'GRADES_DO_STATS_ADMIN_TEACHERS', 'Y', '[[regtime]]', NULL),
(2024, 1, 'students', 'STUDENTS_USE_BUS', 'Y', '[[regtime]]', NULL),
(2024, 1, 'students', 'STUDENTS_USE_CONTACT', 'Y', '[[regtime]]', NULL),
(2024, 1, 'students', 'STUDENTS_SEMESTER_COMMENTS', NULL, '[[regtime]]', NULL),
(2024, 1, 'moodle', 'MOODLE_URL', NULL, '[[regtime]]', NULL),
(2024, 1, 'moodle', 'MOODLE_TOKEN', NULL, '[[regtime]]', NULL),
(2024, 1, 'moodle', 'MOODLE_PARENT_ROLE_ID', NULL, '[[regtime]]', NULL),
(2024, 1, 'moodle', 'MOODLE_API_PROTOCOL', 'rest', '[[regtime]]', NULL),
(2024, 1, 'food_service', 'FOOD_SERVICE_BALANCE_WARNING', '5', '[[regtime]]', NULL),
(2024, 1, 'food_service', 'FOOD_SERVICE_BALANCE_MINIMUM', '-40', '[[regtime]]', NULL),
(2024, 1, 'food_service', 'FOOD_SERVICE_BALANCE_TARGET', '19', '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `program_user_config`
--
CREATE TABLE `program_user_config` (
`user_id` int(11) NOT NULL,
`program` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`value` longtext COLLATE utf8mb4_unicode_520_ci,
`school_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
KEY `program_user_config_ind1` (`user_id`,`program`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `report_card_comments`
--
CREATE TABLE `report_card_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`course_id` int(11) DEFAULT NULL,
`category_id` int(11) DEFAULT NULL,
`scale_id` int(11) DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `report_card_comments`
--
INSERT INTO `report_card_comments` VALUES
(1, 2024, 1, NULL, NULL, NULL, 1, '^n Fails to Meet Course Requirements', '[[regtime]]', NULL),
(2, 2024, 1, NULL, NULL, NULL, 2, '^n Comes to ^s Class Unprepared', '[[regtime]]', NULL),
(3, 2024, 1, NULL, NULL, NULL, 3, '^n Exerts Positive Influence in Class', '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `report_card_comment_categories`
--
CREATE TABLE `report_card_comment_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`course_id` int(11) DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`rollover_id` int(11) DEFAULT NULL,
`color` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `course_id` (`course_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `report_card_comment_codes`
--
CREATE TABLE `report_card_comment_codes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`scale_id` int(11) NOT NULL,
`title` varchar(5) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`comment` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `report_card_comment_codes_ind1` (`school_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `report_card_comment_code_scales`
--
CREATE TABLE `report_card_comment_code_scales` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`title` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `report_card_grades`
--
CREATE TABLE `report_card_grades` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`title` varchar(5) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`gpa_value` decimal(7,2) DEFAULT NULL,
`break_off` decimal(7,2) DEFAULT NULL,
`comment` text COLLATE utf8mb4_unicode_520_ci,
`grade_scale_id` int(11) DEFAULT NULL,
`unweighted_gp` decimal(7,2) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=16 ;
--
-- Dumping data for table `report_card_grades`
--
INSERT INTO `report_card_grades` VALUES
(1, 2024, 1, 'A+', 1, 4.00, 97.00, 'Consistently superior', 1, NULL, '[[regtime]]', NULL),
(2, 2024, 1, 'A', 2, 4.00, 93.00, 'Superior', 1, NULL, '[[regtime]]', NULL),
(3, 2024, 1, 'A-', 3, 3.75, 90.00, 'Superior', 1, NULL, '[[regtime]]', NULL),
(4, 2024, 1, 'B+', 4, 3.50, 87.00, 'Above average', 1, NULL, '[[regtime]]', NULL),
(5, 2024, 1, 'B', 5, 3.00, 83.00, 'Above average', 1, NULL, '[[regtime]]', NULL),
(6, 2024, 1, 'B-', 6, 2.75, 80.00, 'Above average', 1, NULL, '[[regtime]]', NULL),
(7, 2024, 1, 'C+', 7, 2.50, 77.00, 'Average', 1, NULL, '[[regtime]]', NULL),
(8, 2024, 1, 'C', 8, 2.00, 73.00, 'Average', 1, NULL, '[[regtime]]', NULL),
(9, 2024, 1, 'C-', 9, 1.75, 70.00, 'Average', 1, NULL, '[[regtime]]', NULL),
(10, 2024, 1, 'D+', 10, 1.50, 67.00, 'Below average', 1, NULL, '[[regtime]]', NULL),
(11, 2024, 1, 'D', 11, 1.00, 63.00, 'Below average', 1, NULL, '[[regtime]]', NULL),
(12, 2024, 1, 'D-', 12, 0.75, 60.00, 'Below average', 1, NULL, '[[regtime]]', NULL),
(13, 2024, 1, 'F', 13, 0.00, 0.00, 'Failing', 1, NULL, '[[regtime]]', NULL),
(14, 2024, 1, 'I', 14, 0.00, 0.00, 'Incomplete', 1, NULL, '[[regtime]]', NULL),
(15, 2024, 1, 'N/A', 15, NULL, NULL, NULL, 1, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `report_card_grade_scales`
--
CREATE TABLE `report_card_grade_scales` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment` text COLLATE utf8mb4_unicode_520_ci,
`hhr_gpa_value` decimal(7,2) DEFAULT NULL,
`hr_gpa_value` decimal(7,2) DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`gp_scale` decimal(7,2) NOT NULL,
`gp_passing_value` decimal(7,2) NOT NULL,
`hrs_gpa_value` decimal(7,2) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `report_card_grade_scales`
--
INSERT INTO `report_card_grade_scales` VALUES
(1, 2024, 1, 'Main', NULL, NULL, NULL, 1, NULL, 4.00, 0.00, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `resources`
--
CREATE TABLE `resources` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link` text COLLATE utf8mb4_unicode_520_ci,
`published_profiles` text COLLATE utf8mb4_unicode_520_ci,
`published_grade_levels` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `resources`
--
INSERT INTO `resources` VALUES
(1, 1, 'Print Handbook', 'Help.php', NULL, NULL, '[[regtime]]', NULL),
(2, 1, 'Quick Setup Guide', 'https://www.rosariosis.org/quick-setup-guide/', NULL, NULL, '[[regtime]]', NULL),
(3, 1, 'Forum', 'https://www.rosariosis.org/forum/', NULL, NULL, '[[regtime]]', NULL),
(4, 1, 'Contribute', 'https://www.rosariosis.org/contribute/', NULL, NULL, '[[regtime]]', NULL),
(5, 1, 'Report a bug', 'https://gitlab.com/francoisjacquet/rosariois/-/issues/new', NULL, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `schedule`
--
CREATE TABLE `schedule` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`start_date` date NOT NULL,
`end_date` date DEFAULT NULL,
`modified_date` date DEFAULT NULL,
`modified_by` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`course_id` int(11) NOT NULL,
`course_period_id` int(11) NOT NULL,
`mp` varchar(3) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`marking_period_id` int(11) DEFAULT NULL,
`scheduler_lock` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
KEY `course_id` (`course_id`),
KEY `course_period_id` (`course_period_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `school_id` (`school_id`,`syear`),
KEY `schedule_ind3` (`student_id`,`marking_period_id`,`start_date`,`end_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `schedule_requests`
--
CREATE TABLE `schedule_requests` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`request_id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`subject_id` int(11) DEFAULT NULL,
`course_id` int(11) DEFAULT NULL,
`marking_period_id` int(11) DEFAULT NULL,
`priority` int(11) DEFAULT NULL,
`with_teacher_id` int(11) DEFAULT NULL,
`not_teacher_id` int(11) DEFAULT NULL,
`with_period_id` int(11) DEFAULT NULL,
`not_period_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`request_id`),
KEY `course_id` (`course_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `school_id` (`school_id`,`syear`),
KEY `schedule_requests_ind1` (`student_id`,`course_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `schools`
--
CREATE TABLE `schools` (
`syear` decimal(4,0) NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`city` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`state` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`zipcode` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`phone` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`principal` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`www_address` text COLLATE utf8mb4_unicode_520_ci,
`school_number` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`short_name` varchar(25) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`reporting_gp_scale` decimal(10,3) DEFAULT NULL,
`number_days_rotation` decimal(1,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`,`syear`),
KEY `schools_ind1` (`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `schools`
--
INSERT INTO `schools` VALUES
(2024, 1, 'Default School', '500 S. Street St.', 'Springfield', 'IL', '62704', NULL, 'Mr. Principal', 'www.rosariosis.org', NULL, NULL, 4.000, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `school_fields`
--
CREATE TABLE `school_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`select_options` text COLLATE utf8mb4_unicode_520_ci,
`required` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`default_selection` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_desc_ind2` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `school_gradelevels`
--
CREATE TABLE `school_gradelevels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`school_id` int(11) NOT NULL,
`short_name` varchar(3) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`title` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`next_grade_id` int(11) DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `school_gradelevels_ind1` (`school_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=10 ;
--
-- Dumping data for table `school_gradelevels`
--
INSERT INTO `school_gradelevels` VALUES
(1, 1, 'KG', 'Kindergarten', 2, 1, '[[regtime]]', NULL),
(2, 1, '01', '1st', 3, 2, '[[regtime]]', NULL),
(3, 1, '02', '2nd', 4, 3, '[[regtime]]', NULL),
(4, 1, '03', '3rd', 5, 4, '[[regtime]]', NULL),
(5, 1, '04', '4th', 6, 5, '[[regtime]]', NULL),
(6, 1, '05', '5th', 7, 6, '[[regtime]]', NULL),
(7, 1, '06', '6th', 8, 7, '[[regtime]]', NULL),
(8, 1, '07', '7th', 9, 8, '[[regtime]]', NULL),
(9, 1, '08', '8th', NULL, 9, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `school_marking_periods`
--
CREATE TABLE `school_marking_periods` (
`marking_period_id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`mp` varchar(3) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`school_id` int(11) NOT NULL,
`parent_id` int(11) DEFAULT NULL,
`title` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`start_date` date NOT NULL,
`end_date` date NOT NULL,
`post_start_date` date DEFAULT NULL,
`post_end_date` date DEFAULT NULL,
`does_grades` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`does_comments` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`marking_period_id`),
KEY `school_id` (`school_id`,`syear`),
KEY `school_marking_periods_ind1` (`parent_id`),
KEY `school_marking_periods_ind2` (`syear`,`school_id`,`start_date`,`end_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=8 ;
--
-- Dumping data for table `school_marking_periods`
--
INSERT INTO `school_marking_periods` VALUES
(1, 2024, 'FY', 1, NULL, 'Full Year', 'FY', 1, '2024-06-14', '2025-06-12', NULL, NULL, NULL, NULL, NULL, '[[regtime]]', NULL),
(2, 2024, 'SEM', 1, 1, 'Semester 1', 'S1', 1, '2024-06-14', '2024-12-31', '2024-12-28', '2024-12-31', NULL, NULL, NULL, '[[regtime]]', NULL),
(3, 2024, 'SEM', 1, 1, 'Semester 2', 'S2', 2, '2025-01-01', '2025-06-12', '2025-06-11', '2025-06-12', NULL, NULL, NULL, '[[regtime]]', NULL),
(4, 2024, 'QTR', 1, 2, 'Quarter 1', 'Q1', 1, '2024-06-14', '2024-09-13', '2024-09-11', '2024-09-13', 'Y', 'Y', NULL, '[[regtime]]', NULL),
(5, 2024, 'QTR', 1, 2, 'Quarter 2', 'Q2', 2, '2024-09-14', '2024-12-31', '2024-12-28', '2024-12-31', 'Y', 'Y', NULL, '[[regtime]]', NULL),
(6, 2024, 'QTR', 1, 3, 'Quarter 3', 'Q3', 3, '2025-01-01', '2025-03-14', '2025-03-12', '2025-03-14', 'Y', 'Y', NULL, '[[regtime]]', NULL),
(7, 2024, 'QTR', 1, 3, 'Quarter 4', 'Q4', 4, '2025-03-15', '2025-06-12', '2025-06-11', '2025-06-12', 'Y', 'Y', NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `school_periods`
--
CREATE TABLE `school_periods` (
`period_id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`length` int(11) DEFAULT NULL,
`start_time` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`end_time` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`block` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`attendance` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`period_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=12 ;
--
-- Dumping data for table `school_periods`
--
INSERT INTO `school_periods` VALUES
(1, 2024, 1, 1, 'Full Day', 'FD', 300, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(2, 2024, 1, 2, 'Half Day AM', 'AM', 150, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(3, 2024, 1, 3, 'Half Day PM', 'PM', 150, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(4, 2024, 1, 4, 'Period 1', '01', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(5, 2024, 1, 5, 'Period 2', '02', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(6, 2024, 1, 6, 'Period 3', '03', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(7, 2024, 1, 7, 'Period 4', '04', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(8, 2024, 1, 8, 'Period 5', '05', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(9, 2024, 1, 9, 'Period 6', '06', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(10, 2024, 1, 10, 'Period 7', '07', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL),
(11, 2024, 1, 11, 'Period 8', '08', 50, NULL, NULL, NULL, 'Y', NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `staff`
--
CREATE TABLE `staff` (
`syear` decimal(4,0) NOT NULL,
`staff_id` int(11) NOT NULL AUTO_INCREMENT,
`current_school_id` int(11) DEFAULT NULL,
`title` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`first_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`last_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`middle_name` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`name_suffix` varchar(3) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`username` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`password` varchar(106) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`custom_200000001` text COLLATE utf8mb4_unicode_520_ci,
`profile` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`schools` varchar(150) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`last_login` datetime DEFAULT NULL,
`failed_login` int(11) DEFAULT NULL,
`profile_id` int(11) DEFAULT NULL,
`rollover_id` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`staff_id`),
UNIQUE KEY `staff_ind4` (`username`,`syear`),
KEY `staff_ind1` (`staff_id`,`syear`),
KEY `staff_ind2` (`last_name`,`first_name`),
KEY `staff_ind3` (`schools`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `staff`
--
INSERT INTO `staff` VALUES
(2024, 1, 1, NULL, 'Admin', 'Administrator', 'A', NULL, '[[admin_username]]', '[[admin_pass]]', '[[admin_email]]', NULL, 'admin', ',1,', '[[regtime]]', NULL, 1, NULL, '[[regtime]]', '[[regtime]]'),
(2024, 2, 1, NULL, 'Teach', 'Teacher', 'T', NULL, 'teacher', '$6$cf0dc4c40d38891f$FqKT6nlTer3ujAf8CcQi6ABIEtlow0Va2p6HYh.M6eGWUfpgLr/pfrSwdIcTlV1LDxLg52puVETGMCYKL3vOo/', NULL, NULL, 'teacher', ',1,', NULL, NULL, 2, NULL, '[[regtime]]', NULL),
(2024, 3, 1, NULL, 'Parent', 'Parent', 'P', NULL, 'parent', '$6$947c923597601364$Kgbb0Ey3lYTYnqM66VkFRgJVFDW48cBAfNF7t0CVjokL7drcEFId61whqpLrRI1w0q2J2VPfg86Obaf1tG2Ng1', NULL, NULL, 'parent', NULL, NULL, NULL, 3, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `staff_exceptions`
--
CREATE TABLE `staff_exceptions` (
`user_id` int(11) NOT NULL,
`modname` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`can_use` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`can_edit` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`user_id`,`modname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `staff_fields`
--
CREATE TABLE `staff_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`select_options` text COLLATE utf8mb4_unicode_520_ci,
`category_id` int(11) DEFAULT NULL,
`required` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`default_selection` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `staff_desc_ind2` (`type`),
KEY `staff_fields_ind3` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=200000002 ;
--
-- Dumping data for table `staff_fields`
--
INSERT INTO `staff_fields` VALUES
(200000000, 'text', 'Email Address', 0, NULL, 1, NULL, NULL, '[[regtime]]', NULL),
(200000001, 'text', 'Phone Number', 1, NULL, 1, NULL, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `staff_field_categories`
--
CREATE TABLE `staff_field_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`columns` decimal(4,0) DEFAULT NULL,
`include` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`admin` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`teacher` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`parent` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`none` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `staff_field_categories`
--
INSERT INTO `staff_field_categories` VALUES
(1, 'General Info', 1, NULL, NULL, 'Y', 'Y', 'Y', 'Y', '[[regtime]]', NULL),
(2, 'Schedule', 2, NULL, NULL, NULL, 'Y', NULL, NULL, '[[regtime]]', NULL),
(3, 'Food Service', 3, NULL, 'Food_Service/User', 'Y', 'Y', NULL, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `students`
--
CREATE TABLE `students` (
`student_id` int(11) NOT NULL AUTO_INCREMENT,
`last_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`first_name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`middle_name` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`name_suffix` varchar(3) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`username` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`password` varchar(106) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`last_login` datetime DEFAULT NULL,
`failed_login` int(11) DEFAULT NULL,
`custom_200000000` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000001` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000002` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000003` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000004` date DEFAULT NULL,
`custom_200000005` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000006` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000007` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000008` text COLLATE utf8mb4_unicode_520_ci,
`custom_200000009` longtext COLLATE utf8mb4_unicode_520_ci,
`custom_200000010` char(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`custom_200000011` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`),
UNIQUE KEY `username` (`username`),
KEY `name` (`last_name`,`first_name`,`middle_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `students`
--
INSERT INTO `students` VALUES
(1, 'Student', 'Student', 'S', NULL, 'student', '$6$f03d507b27b8b9ff$WKtYRdFZGNjRKUr4btzq/p90hbKRAyB8HmrZpgpUhbAh.GtOCveXtXt43IaEDZJ31rVUYZ7ID8xPgKkCiRyzZ1', NULL, NULL, 'Male', 'White, Non-Hispanic', 'Bug', NULL, '2015-12-04', 'English', NULL, NULL, NULL, NULL, NULL, NULL, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `students_join_address`
--
CREATE TABLE `students_join_address` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`address_id` int(11) NOT NULL,
`contact_seq` decimal(10,0) DEFAULT NULL,
`gets_mail` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`primary_residence` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`legal_residence` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`am_bus` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`pm_bus` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`mailing` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`residence` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`bus` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`bus_pickup` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`bus_dropoff` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `stu_addr_meets_2` (`address_id`),
KEY `students_join_address_ind1` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `students_join_people`
--
CREATE TABLE `students_join_people` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`person_id` int(11) NOT NULL,
`address_id` int(11) DEFAULT NULL,
`custody` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`emergency` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`student_relation` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`),
KEY `relations_meets_2` (`address_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `students_join_users`
--
CREATE TABLE `students_join_users` (
`student_id` int(11) NOT NULL,
`staff_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`,`staff_id`),
KEY `staff_id` (`staff_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `students_join_users`
--
INSERT INTO `students_join_users` VALUES
(1, 3, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `student_assignments`
--
CREATE TABLE `student_assignments` (
`assignment_id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`data` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`assignment_id`,`student_id`),
KEY `student_id` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `student_eligibility_activities`
--
CREATE TABLE `student_eligibility_activities` (
`syear` decimal(4,0) DEFAULT NULL,
`student_id` int(11) NOT NULL,
`activity_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
KEY `student_id` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `student_enrollment`
--
CREATE TABLE `student_enrollment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`grade_id` int(11) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`enrollment_code` int(11) DEFAULT NULL,
`drop_code` int(11) DEFAULT NULL,
`next_school` int(11) DEFAULT NULL,
`calendar_id` int(11) DEFAULT NULL,
`last_school` int(11) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`),
KEY `school_id` (`school_id`,`syear`),
KEY `student_enrollment_2` (`grade_id`),
KEY `student_enrollment_4` (`start_date`,`end_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `student_enrollment`
--
INSERT INTO `student_enrollment` VALUES
(1, 2024, 1, 1, 7, '2024-06-07', NULL, 3, NULL, 1, 1, 1, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `student_enrollment_codes`
--
CREATE TABLE `student_enrollment_codes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`syear` decimal(4,0) NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`short_name` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`type` varchar(4) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`default_code` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `student_enrollment_codes`
--
INSERT INTO `student_enrollment_codes` VALUES
(1, 2024, 'Moved from District', 'MOVE', 'Drop', NULL, 1, '[[regtime]]', NULL),
(2, 2024, 'Expelled', 'EXP', 'Drop', NULL, 2, '[[regtime]]', NULL),
(3, 2024, 'Beginning of Year', 'EBY', 'Add', 'Y', 3, '[[regtime]]', NULL),
(4, 2024, 'From Other District', 'OTHER', 'Add', NULL, 4, '[[regtime]]', NULL),
(5, 2024, 'Transferred in District', 'TRAN', 'Drop', NULL, 5, '[[regtime]]', NULL),
(6, 2024, 'Transferred in District', 'EMY', 'Add', NULL, 6, '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `student_field_categories`
--
CREATE TABLE `student_field_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`sort_order` decimal(10,0) DEFAULT NULL,
`columns` decimal(4,0) DEFAULT NULL,
`include` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `student_field_categories`
--
INSERT INTO `student_field_categories` VALUES
(1, 'General Info', 1, NULL, NULL, '[[regtime]]', NULL),
(2, 'Medical', 3, NULL, NULL, '[[regtime]]', NULL),
(3, 'Addresses & Contacts', 2, NULL, NULL, '[[regtime]]', NULL),
(4, 'Comments', 4, NULL, NULL, '[[regtime]]', NULL),
(5, 'Food Service', 5, NULL, 'Food_Service/Student', '[[regtime]]', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `student_medical`
--
CREATE TABLE `student_medical` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`type` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`medical_date` date DEFAULT NULL,
`comments` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `student_medical_alerts`
--
CREATE TABLE `student_medical_alerts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `student_medical_visits`
--
CREATE TABLE `student_medical_visits` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`school_date` date NOT NULL,
`time_in` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`time_out` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`reason` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`result` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`comments` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `student_mp_comments`
--
CREATE TABLE `student_mp_comments` (
`student_id` int(11) NOT NULL,
`syear` decimal(4,0) NOT NULL,
`marking_period_id` int(11) NOT NULL,
`comment` text COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`,`syear`,`marking_period_id`),
KEY `marking_period_id` (`marking_period_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `student_mp_stats`
--
CREATE TABLE `student_mp_stats` (
`student_id` int(11) NOT NULL,
`marking_period_id` int(11) NOT NULL,
`cum_weighted_factor` decimal(22,16) DEFAULT NULL,
`cum_unweighted_factor` decimal(22,16) DEFAULT NULL,
`cum_rank` int(11) DEFAULT NULL,
`mp_rank` int(11) DEFAULT NULL,
`class_size` int(11) DEFAULT NULL,
`sum_weighted_factors` decimal(22,16) DEFAULT NULL,
`sum_unweighted_factors` decimal(22,16) DEFAULT NULL,
`count_weighted_factors` int(11) DEFAULT NULL,
`count_unweighted_factors` int(11) DEFAULT NULL,
`grade_level_short` varchar(3) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`cr_weighted_factors` decimal(22,16) DEFAULT NULL,
`cr_unweighted_factors` decimal(22,16) DEFAULT NULL,
`count_cr_factors` int(11) DEFAULT NULL,
`cum_cr_weighted_factor` decimal(22,16) DEFAULT NULL,
`cum_cr_unweighted_factor` decimal(22,16) DEFAULT NULL,
`credit_attempted` decimal(22,16) DEFAULT NULL,
`credit_earned` decimal(22,16) DEFAULT NULL,
`gp_credits` decimal(22,16) DEFAULT NULL,
`cr_credits` decimal(22,16) DEFAULT NULL,
`comments` varchar(75) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`student_id`,`marking_period_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `student_report_card_comments`
--
CREATE TABLE `student_report_card_comments` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`course_period_id` int(11) NOT NULL,
`report_card_comment_id` int(11) NOT NULL,
`comment` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`marking_period_id` int(11) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`syear`,`student_id`,`course_period_id`,`marking_period_id`,`report_card_comment_id`),
KEY `student_id` (`student_id`),
KEY `course_period_id` (`course_period_id`),
KEY `marking_period_id` (`marking_period_id`),
KEY `school_id` (`school_id`,`syear`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `student_report_card_grades`
--
CREATE TABLE `student_report_card_grades` (
`syear` decimal(4,0) NOT NULL,
`school_id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`course_period_id` int(11) DEFAULT NULL,
`report_card_grade_id` int(11) DEFAULT NULL,
`report_card_comment_id` int(11) DEFAULT NULL,
`comment` text COLLATE utf8mb4_unicode_520_ci,
`grade_percent` decimal(4,1) DEFAULT NULL,
`marking_period_id` int(11) NOT NULL,
`grade_letter` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`weighted_gp` decimal(7,2) DEFAULT NULL,
`unweighted_gp` decimal(7,2) DEFAULT NULL,
`gp_scale` decimal(7,2) DEFAULT NULL,
`credit_attempted` decimal(22,16) DEFAULT NULL,
`credit_earned` decimal(22,16) DEFAULT NULL,
`credit_category` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`course_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`school` text COLLATE utf8mb4_unicode_520_ci,
`class_rank` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`credit_hours` decimal(6,2) DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `student_id` (`student_id`),
KEY `course_period_id` (`course_period_id`),
KEY `student_report_card_grades_ind4` (`marking_period_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `templates`
--
CREATE TABLE `templates` (
`modname` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`staff_id` int(11) NOT NULL,
`template` longtext COLLATE utf8mb4_unicode_520_ci,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`modname`,`staff_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `templates`
--
INSERT INTO `templates` VALUES
('Custom/CreateParents.php', 0, 'Dear __PARENT_NAME__,\r\n\r\nA parent account for the __SCHOOL_ID__ has been created to access school information and student information for the following students:\r\n__ASSOCIATED_STUDENTS__\r\n\r\nYour account credentials are:\r\nUsername: __USERNAME__\r\nPassword: __PASSWORD__\r\n\r\nA link to the SIS website and instructions for access are available on the school''s website__BLOCK2__Dear __PARENT_NAME__,\r\n\r\nThe following students have been added to your parent account on the SIS:\r\n__ASSOCIATED_STUDENTS__', '[[regtime]]', NULL),
('Custom/NotifyParents.php', 0, 'Dear __PARENT_NAME__,\r\n\r\nA parent account for the __SCHOOL_ID__ has been created to access school information and student information for the following students:\r\n__ASSOCIATED_STUDENTS__\r\n\r\nYour account credentials are:\r\nUsername: __USERNAME__\r\nPassword: __PASSWORD__\r\n\r\nA link to the SIS website and instructions for access are available on the school''s website', '[[regtime]]', NULL),
('Grades/HonorRoll.php', 0, '
\r\n
The Principal here undersigned certifies:
\r\nThat __FIRST_NAME__ __LAST_NAME__ attended at this school the following courses corresponding to grade __GRADE_ID__ in year __YEAR__ with the following grades and credit hours.
\r\n__BLOCK2__
\r\n\r\n
\r\n Signature \r\n
\r\n Title | \r\n\r\n Signature \r\n
\r\n Title |