Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy committed Sep 18, 2024
1 parent 642f1f9 commit 80e50e0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions migrations/1694620030174_global-settings.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/* eslint-disable camelcase */
exports.up = pgm => {
pgm.createTable({ schema: "jtl", name: "global" }, {
instance_id: {
pgm.createTable({ schema: "jtl", name: "global_settings" }, {
id: {
type: "serial",
},
project_auto_provisioning: {
type: "boolean",
"default": false,
notNull: true,
},
})

}

0 comments on commit 80e50e0

Please sign in to comment.