Session handling to prevent session lose in other places like, home, admin, etc
when user is using the new designer that have not session because it is using only the API
This commit is contained in:
@@ -8,6 +8,7 @@ include_once 'creole/CreoleTypes.php';
|
||||
* This class adds structure of 'OUTPUT_DOCUMENT' table to 'workflow' DatabaseMap object.
|
||||
*
|
||||
*
|
||||
*
|
||||
* These statically-built map classes are used by Propel to do runtime db structure discovery.
|
||||
* For example, the createSelectSql() method checks the type of a given column used in an
|
||||
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
|
||||
|
||||
@@ -71,7 +71,9 @@ class PmoauthUserAccessTokensMapBuilder
|
||||
|
||||
$tMap->addColumn('USER_ID', 'UserId', 'string', CreoleTypes::VARCHAR, false, 32);
|
||||
|
||||
$tMap->addColumn('SESSION_ID', 'SessionId', 'string', CreoleTypes::VARCHAR, true, 40);
|
||||
$tMap->addColumn('SESSION_ID', 'SessionId', 'string', CreoleTypes::VARCHAR, true, 64);
|
||||
|
||||
$tMap->addColumn('SESSION_NAME', 'SessionName', 'string', CreoleTypes::VARCHAR, true, 64);
|
||||
|
||||
} // doBuild()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user