Changeset 2230860
- Timestamp:
- 01/21/2020 10:51:56 AM (6 years ago)
- Location:
- easytimetable-responsive-schedule-management-system/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
includes/class-easy-timetable-activator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easytimetable-responsive-schedule-management-system/trunk/README.txt
r2123400 r2230860 4 4 Tags: timetable, schedule, week schedule, scheduled activities, drag & drop, responsive, week calendar, jQuery, Ajax, school timetable, schedule management, planning, emploi du temps, Zeitplan, Wochenplan, programma settimanale, orario, empleo del tiempo, horario semanal, programação semanal, horário, dienstregeling 5 5 Requires at least: 3.5.0 6 Tested up to: 5. 27 Stable tag: 1.4. 76 Tested up to: 5.3 7 Stable tag: 1.4.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 120 120 121 121 == Changelog == 122 = 1.4.8 = 123 Bug Fix: change sql install script to avoid installation issue. 122 124 = 1.4.7 = 123 125 Bug Fix: Problem with dates under column name in the public view. -
easytimetable-responsive-schedule-management-system/trunk/includes/class-easy-timetable-activator.php
r1597338 r2230860 56 56 if ($nom_table == "planning") { 57 57 $sql = "CREATE TABLE $table_name ( 58 id mediumint(9) NOT NULL AUTO_INCREMENT,58 id INT(9) NOT NULL AUTO_INCREMENT, 59 59 p_name VARCHAR(255) NOT NULL , 60 60 creation_date VARCHAR(20) NOT NULL , … … 64 64 time_mode VARCHAR(1) NOT NULL , 65 65 start_h VARCHAR(8) NOT NULL , 66 rows SMALLINT(1) NOT NULL ,66 rows INT(1) NOT NULL , 67 67 rows_name TEXT NOT NULL , 68 cells SMALLINT(2) NOT NULL ,68 cells INT(2) NOT NULL , 69 69 cell_color VARCHAR(6) NOT NULL , 70 height SMALLINT(3) NOT NULL ,70 height INT(3) NOT NULL , 71 71 description TEXT NOT NULL , 72 72 activities TEXT NOT NULL , 73 73 scheduledact TEXT NOT NULL , 74 74 days TEXT NOT NULL , 75 print TINYINT(1) NOT NULL ,75 print INT(1) NOT NULL , 76 76 created_by INT(11) NOT NULL , 77 77 access INT(11) NOT NULL ,
Note: See TracChangeset
for help on using the changeset viewer.