Skip to content
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.

Commit

Permalink
Added DB schema for custom-metrics credentials management
Browse files Browse the repository at this point in the history
  • Loading branch information
paltanmoy committed Aug 9, 2018
1 parent daef4aa commit e548184
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions api/db/api.db.changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,42 @@ databaseChangeLog:
type: varchar(50)
value: "1"
tableName: policy_json
- changeSet:
id: 3
author: paltanmoy
changes:
- createTable:
tableName: credentials
columns:
- column:
name: id
type: varchar(40)
constraints:
primaryKey: true
nullable: false
- column:
name: binding_id
type: varchar(40)
- column:
name: username
type: varchar(100)
constraints:
nullable: false
- column:
name: password
type: varchar(100)
constraints:
nullable: false
- column:
name: updated_at
type: timestamp
constraints:
nullable: false
createIndex:
columns:
- column:
name: id
type: varchar(255)
indexName: idx_credentials
tableName: credentials

0 comments on commit e548184

Please sign in to comment.