Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
edx
edx-platform
Commits
328c84a2
Commit
328c84a2
authored
Jan 22, 2016
by
Jonathan Piacenti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update bok_choy database cache.
parent
b4918f7f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
4 deletions
+40
-4
common/test/db_cache/bok_choy_data.json
+0
-0
common/test/db_cache/bok_choy_migrations_data.sql
+0
-0
common/test/db_cache/bok_choy_schema.sql
+40
-4
No files found.
common/test/db_cache/bok_choy_data.json
View file @
328c84a2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
common/test/db_cache/bok_choy_migrations_data.sql
View file @
328c84a2
This diff is collapsed.
Click to expand it.
common/test/db_cache/bok_choy_schema.sql
View file @
328c84a2
...
@@ -412,7 +412,7 @@ CREATE TABLE `auth_permission` (
...
@@ -412,7 +412,7 @@ CREATE TABLE `auth_permission` (
PRIMARY
KEY
(
`id`
),
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`content_type_id`
(
`content_type_id`
,
`codename`
),
UNIQUE
KEY
`content_type_id`
(
`content_type_id`
,
`codename`
),
CONSTRAINT
`auth__content_type_id_508cf46651277a81_fk_django_content_type_id`
FOREIGN
KEY
(
`content_type_id`
)
REFERENCES
`django_content_type`
(
`id`
)
CONSTRAINT
`auth__content_type_id_508cf46651277a81_fk_django_content_type_id`
FOREIGN
KEY
(
`content_type_id`
)
REFERENCES
`django_content_type`
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
74
0
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
74
6
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`auth_registration`
;
DROP
TABLE
IF
EXISTS
`auth_registration`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
...
@@ -444,7 +444,7 @@ CREATE TABLE `auth_user` (
...
@@ -444,7 +444,7 @@ CREATE TABLE `auth_user` (
`date_joined`
datetime
(
6
)
NOT
NULL
,
`date_joined`
datetime
(
6
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
),
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`username`
(
`username`
)
UNIQUE
KEY
`username`
(
`username`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
2
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
3
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`auth_user_groups`
;
DROP
TABLE
IF
EXISTS
`auth_user_groups`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
...
@@ -1353,6 +1353,24 @@ CREATE TABLE `courseware_xmoduleuserstatesummaryfield` (
...
@@ -1353,6 +1353,24 @@ CREATE TABLE `courseware_xmoduleuserstatesummaryfield` (
KEY
`courseware_xmoduleuserstatesummaryfield_0528eb2a`
(
`usage_id`
)
KEY
`courseware_xmoduleuserstatesummaryfield_0528eb2a`
(
`usage_id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`credentials_credentialsapiconfig`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET character_set_client = utf8 */
;
CREATE
TABLE
`credentials_credentialsapiconfig`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`change_date`
datetime
(
6
)
NOT
NULL
,
`enabled`
tinyint
(
1
)
NOT
NULL
,
`internal_service_url`
varchar
(
200
)
NOT
NULL
,
`public_service_url`
varchar
(
200
)
NOT
NULL
,
`enable_learner_issuance`
tinyint
(
1
)
NOT
NULL
,
`enable_studio_authoring`
tinyint
(
1
)
NOT
NULL
,
`cache_ttl`
int
(
10
)
unsigned
NOT
NULL
,
`changed_by_id`
int
(
11
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
),
KEY
`credentials_crede_changed_by_id_273a2e6b0649c861_fk_auth_user_id`
(
`changed_by_id`
),
CONSTRAINT
`credentials_crede_changed_by_id_273a2e6b0649c861_fk_auth_user_id`
FOREIGN
KEY
(
`changed_by_id`
)
REFERENCES
`auth_user`
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`credit_creditcourse`
;
DROP
TABLE
IF
EXISTS
`credit_creditcourse`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET character_set_client = utf8 */
;
/*!40101 SET character_set_client = utf8 */
;
...
@@ -1600,7 +1618,7 @@ CREATE TABLE `django_content_type` (
...
@@ -1600,7 +1618,7 @@ CREATE TABLE `django_content_type` (
`model`
varchar
(
100
)
NOT
NULL
,
`model`
varchar
(
100
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
),
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`django_content_type_app_label_45f3b1d93ec8c61c_uniq`
(
`app_label`
,
`model`
)
UNIQUE
KEY
`django_content_type_app_label_45f3b1d93ec8c61c_uniq`
(
`app_label`
,
`model`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
24
6
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
24
8
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`django_migrations`
;
DROP
TABLE
IF
EXISTS
`django_migrations`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
...
@@ -1611,7 +1629,7 @@ CREATE TABLE `django_migrations` (
...
@@ -1611,7 +1629,7 @@ CREATE TABLE `django_migrations` (
`name`
varchar
(
255
)
NOT
NULL
,
`name`
varchar
(
255
)
NOT
NULL
,
`applied`
datetime
(
6
)
NOT
NULL
,
`applied`
datetime
(
6
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
)
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
10
3
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
10
7
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`django_openid_auth_association`
;
DROP
TABLE
IF
EXISTS
`django_openid_auth_association`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
...
@@ -2473,6 +2491,24 @@ CREATE TABLE `organizations_organizationcourse` (
...
@@ -2473,6 +2491,24 @@ CREATE TABLE `organizations_organizationcourse` (
CONSTRAINT
`a7b04b16eba98e518fbe21d390bd8e3e`
FOREIGN
KEY
(
`organization_id`
)
REFERENCES
`organizations_organization`
(
`id`
)
CONSTRAINT
`a7b04b16eba98e518fbe21d390bd8e3e`
FOREIGN
KEY
(
`organization_id`
)
REFERENCES
`organizations_organization`
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`problem_builder_answer`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET character_set_client = utf8 */
;
CREATE
TABLE
`problem_builder_answer`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`name`
varchar
(
50
)
NOT
NULL
,
`student_id`
varchar
(
32
)
NOT
NULL
,
`course_id`
varchar
(
50
)
NOT
NULL
,
`student_input`
longtext
NOT
NULL
,
`created_on`
datetime
(
6
)
NOT
NULL
,
`modified_on`
datetime
(
6
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`problem_builder_answer_student_id_2f6847a9fb3e9385_uniq`
(
`student_id`
,
`course_id`
,
`name`
),
KEY
`problem_builder_answer_b068931c`
(
`name`
),
KEY
`problem_builder_answer_30a811f6`
(
`student_id`
),
KEY
`problem_builder_answer_ea134da7`
(
`course_id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
/*!40101 SET character_set_client = @saved_cs_client */
;
DROP
TABLE
IF
EXISTS
`proctoring_proctoredexam`
;
DROP
TABLE
IF
EXISTS
`proctoring_proctoredexam`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET character_set_client = utf8 */
;
/*!40101 SET character_set_client = utf8 */
;
...
...
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