forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conversion scripts to switch fields to "Not NULL" git-svn-id: https://source.sakaiproject.org/svn/basiclti/trunk@127644 66ffb92e-73f9-0310-93c1-f5514f145a0a
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
ALTER TABLE lti_mapping MODIFY matchpattern VARCHAR(255); | ||
ALTER TABLE lti_mapping MODIFY launch VARCHAR(255); | ||
ALTER TABLE lti_content MODIFY title VARCHAR(255); | ||
ALTER TABLE lti_tools MODIFY title VARCHAR(255); | ||
ALTER TABLE lti_tools MODIFY launch TEXT(1024); | ||
ALTER TABLE lti_tools MODIFY consumerkey VARCHAR(255); | ||
ALTER TABLE lti_tools MODIFY secret VARCHAR(255); |
7 changes: 7 additions & 0 deletions
7
basiclti/notes/basiclti-2.1.1/sakai_basiclti_2_1_1_oracle.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
ALTER TABLE lti_mapping MODIFY ( matchpattern VARCHAR2(255) ); | ||
ALTER TABLE lti_mapping MODIFY ( launch VARCHAR2(255) ); | ||
ALTER TABLE lti_content MODIFY ( title VARCHAR2(255) ); | ||
ALTER TABLE lti_tools MODIFY ( title VARCHAR2(255) ); | ||
ALTER TABLE lti_tools MODIFY ( launch VARCHAR2(1024) ); | ||
ALTER TABLE lti_tools MODIFY ( consumerkey VARCHAR2(255) ); | ||
ALTER TABLE lti_tools MODIFY ( secret VARCHAR2(255) ); |