Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
Compass
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zong
Compass
Commits
78541f4f
Commit
78541f4f
authored
5 years ago
by
lixq
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlib.occloud.net/biao/ZhiNanZhen
# Conflicts: # src/settings/compass_include.inc
parents
9935ab32
8e03e4aa
master
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
compass_db_schema.sql
doc/DB/compass_db_schema.sql
+2
-1
compass_include.inc
src/settings/compass_include.inc
+5
-4
No files found.
doc/DB/compass_db_schema.sql
View file @
78541f4f
...
...
@@ -425,6 +425,8 @@ DROP TABLE IF EXISTS course_mst;
CREATE
TABLE
IF
NOT
EXISTS
course_mst
(
id
bigint
unsigned
NOT
NULL
PRIMARY
KEY
auto_increment
,
registration_date
timestamp
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
parent_category_id
int8
NOT
NULL
,
sub_category_id
int8
NOT
NULL
,
title
varchar
(
128
)
NOT
NULL
,
front_image
text
NOT
NULL
,
teacher_profile
text
,
...
...
@@ -434,7 +436,6 @@ CREATE TABLE IF NOT EXISTS course_mst(
Create
INDEX
course_mst_id_idx
ON
course_mst
(
id
);
Create
INDEX
course_mst_title_idx
ON
course_mst
(
title
);
##
----user_point_log create
DROP
TABLE
IF
EXISTS
user_point_log
;
...
...
This diff is collapsed.
Click to expand it.
src/settings/compass_include.inc
View file @
78541f4f
...
...
@@ -24,8 +24,6 @@ require_once(COMPASS_LIB_ROOT . "/cn/compass/entity/ClassMst.inc");
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/EventDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/GovernmentMst.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/GradeMst.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/MiniplayTrafficClickDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/MiniplayTrafficClickLog.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/OrganizationMst.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/SchoolMst.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/SystemConstantDat.inc"
);
...
...
@@ -37,10 +35,12 @@ require_once(COMPASS_LIB_ROOT . "/cn/compass/entity/UserMst.inc");
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/UserPointLog.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/UserSignDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/UserStaffRelationDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/CourseMst.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/CourseMediaDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/MediaTagDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/UserMediaDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/SystemConstDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/CourseCategoryDat.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/CourseMst.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/CourseMediaDat.inc"
);
// definition
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/definition/ImageType.inc"
);
...
...
@@ -56,6 +56,7 @@ require_once(COMPASS_LIB_ROOT . "/cn/compass/entity/definition/SystemFunction.in
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/definition/OrganizationStatus.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/definition/AcountModule.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/definition/OrderStatus.inc"
);
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/entity/definition/CourseParentCategory.inc"
);
// Action
require_once
(
COMPASS_LIB_ROOT
.
"/cn/compass/action/TemplateAction.inc"
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment