We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23635ac commit 2d916fbCopy full SHA for 2d916fb
src/code.cloudfoundry.org/policy-server/store/migrations/v0077.go
@@ -6,11 +6,14 @@ package migrations
6
var migration_v0077 = map[string][]string{
7
"mysql": {
8
`CREATE TABLE IF NOT EXISTS policies_info (
9
+ id bigint NOT NULL AUTO_INCREMENT,
10
+ PRIMARY KEY (id),
11
last_updated TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
12
);`,
13
},
14
"postgres": {
15
16
+ id BIGSERIAL PRIMARY KEY,
17
18
19
0 commit comments