summaryrefslogtreecommitdiffstats
path: root/keystone/credential
Commit message (Collapse)AuthorAgeFilesLines
* Drop extra credential indexesElena Ezhova2013-08-121-5/+0
| | | | | | | | | For mysql ForeignKey constraints were removed but the fields stayed as indexes. This migration drops them. bp db-sync-models-with-migrations Change-Id: I3baeac4047cd65ac5d7733ba909c45d0874f17d8
* Sync models with migrationsElena Ezhova2013-08-121-0/+5
| | | | | | | | | | | | | | | | | | This patch syncs models with migrations for: -Endpoint -CredentialModel -TokenModel -TrustModel No actual schema change is taking place, this patch just corrects errors in the model definitions. Made class Index avaliable in keystone.common.sql.core partially implements bp db-sync-models-with-migrations Change-Id: I52f5c455360b65a2d5d884bbbec078dca6d34451
* Stop passing context to managers (bug 1194938)Dolph Mathews2013-06-281-8/+5
| | | | | | | We don't have a use case for passing the request context to the manager layer, so this patch removes a bunch of cruft. Change-Id: Ic6435782c4c9f32e38c7800172645cc1af23ea09
* Merge "Add <version> arg to keystone-manage db_sync"Jenkins2013-05-301-2/+2
|\
| * Add <version> arg to keystone-manage db_syncBrian Waldon2013-05-281-2/+2
| | | | | | | | | | | | | | This optional <version> argument allows a client of db_sync to indicate to which database version to upgrade or downgrade. Change-Id: I3ccf45eb572a3897e5d3bc5bd17566493a55f393
* | Merge "Remove useless private method"Jenkins2013-05-241-4/+1
|\ \ | |/ |/|
| * Remove useless private methodDolph Mathews2013-05-221-4/+1
| | | | | | | | Change-Id: If0fbd3ad484128432e0564e37ae9a144cda822b5
* | Satisfy flake8 import rules F401 and F403Dolph Mathews2013-05-231-0/+1
|/ | | | | | | | - Removed unused imports - Ignore wildcard and unused imports from core modules (and avoid wildcard imports otherwise) to __init__ modules Change-Id: Ie2e5f61ae37481f5d248788cfd83dc92ffddbd91
* get SQL refs from session (bp sql-query-get)Dolph Mathews2013-05-201-17/+9
| | | | Change-Id: I2200e33868d50bb69089f3108a5a4c061afccd6e
* extracting credentialsAdam Young2013-05-176-0/+283
Moves the credentials API into its own backend. LDAP was not going to be able to support credentials. Even with a custom schema, many people are using LDAP in read only mode, which means that they would not be able to use the credentials API at all. By splitting it out, we have a workable solution for both SQL and LDAP Identity backends. Drops the Foreign Key constraints off the Credentials table, as there is now no guaranttee that users are stored in the same backend. Blueprint extract-credentials-id Change-Id: I10ad4b36c6f03d1712621eaffcfefa48a5453aff