aboutsummaryrefslogtreecommitdiffstats
path: root/database/migrations/1566385379883_service_schema.js
diff options
context:
space:
mode:
Diffstat (limited to 'database/migrations/1566385379883_service_schema.js')
-rw-r--r--database/migrations/1566385379883_service_schema.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/database/migrations/1566385379883_service_schema.js b/database/migrations/1566385379883_service_schema.js
index bdc066e..a725699 100644
--- a/database/migrations/1566385379883_service_schema.js
+++ b/database/migrations/1566385379883_service_schema.js
@@ -8,6 +8,7 @@ class ServiceSchema extends Schema {
8 this.create('services', (table) => { 8 this.create('services', (table) => {
9 table.increments() 9 table.increments()
10 table.string('userId', 80).notNullable() 10 table.string('userId', 80).notNullable()
11 table.string('serviceId', 80).notNullable()
11 table.string('name', 80).notNullable() 12 table.string('name', 80).notNullable()
12 table.string('recipeId', 254).notNullable() 13 table.string('recipeId', 254).notNullable()
13 table.json('settings') 14 table.json('settings')