-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1101 from zfi/master
Release 0.97
- Loading branch information
Showing
66 changed files
with
2,608 additions
and
817 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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
/* | ||
* Add coach email address field to support email cc option. | ||
*/ | ||
ALTER TABLE user ADD COLUMN coach_email VARCHAR(250) AFTER screen_name; | ||
|
||
/* | ||
* This DDL has been moved to the Cloud Session Server project | ||
*/ | ||
|
||
-- ALTER TABLE user ADD COLUMN coach_email VARCHAR(250) AFTER screen_name; |
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,35 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
|
||
/** | ||
* Add fields to user table to support US COPPA compliance | ||
* | ||
* Author: Jim Ewald | ||
* Created: Apr 27, 2017A | ||
* | ||
* birth_month - is a range of [1 - 12] | ||
* birth_year - is a range from [1930 - current year] | ||
* parent_email - is used to register a child under the ae of 13. This is the | ||
* email address of the parent, guardian or instructor that is | ||
* creating the account on behalf of the child | ||
* | ||
* parent_email_source - is a integer designator to characterize the parent | ||
* email adress noted above. Current options are: | ||
* 0 - undefined | ||
* 1 - child's parent | ||
* 2 - child's guardian | ||
* 3 - child's instructor or teacher | ||
*/ | ||
|
||
/* | ||
* This DDL has been moved to the Cloud Session Server project | ||
*/ | ||
|
||
-- ALTER TABLE cloudsession.user ADD birth_month INT NOT NULL; | ||
-- ALTER TABLE cloudsession.user ADD birth_year INT NOT NULL; | ||
-- ALTER TABLE cloudsession.user ADD parent_email VARCHAR(250) NULL; | ||
-- ALTER TABLE cloudsession.user ADD parent_email_source INT DEFAULT 0 NULL; | ||
-- ALTER TABLE cloudsession.user DROP coach_email; |
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
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
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
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
Oops, something went wrong.