summaryrefslogtreecommitdiffstats
path: root/server/migrations
diff options
context:
space:
mode:
authorUdo Walter2018-07-31 04:20:37 +0200
committerUdo Walter2018-07-31 04:20:37 +0200
commitcb7711cc9f76fe4211538bad74de68c57cd07e83 (patch)
tree633568bcbc8737e97eb0e99eaefbf846422e6147 /server/migrations
parent[webapp/external-backends] Dialog polishing. Thx Udo for fixing the scroll co... (diff)
downloadbas-cb7711cc9f76fe4211538bad74de68c57cd07e83.tar.gz
bas-cb7711cc9f76fe4211538bad74de68c57cd07e83.tar.xz
bas-cb7711cc9f76fe4211538bad74de68c57cd07e83.zip
[groups] add edit form for groups; add description to groups and clients
Diffstat (limited to 'server/migrations')
-rw-r--r--server/migrations/20180717132233-create-group.js3
-rw-r--r--server/migrations/20180717132333-create-client.js3
2 files changed, 6 insertions, 0 deletions
diff --git a/server/migrations/20180717132233-create-group.js b/server/migrations/20180717132233-create-group.js
index 720a1e7..71258dd 100644
--- a/server/migrations/20180717132233-create-group.js
+++ b/server/migrations/20180717132233-create-group.js
@@ -10,6 +10,9 @@ module.exports = {
},
name: {
type: Sequelize.STRING
+ },
+ description: {
+ type: Sequelize.STRING
}
})
},
diff --git a/server/migrations/20180717132333-create-client.js b/server/migrations/20180717132333-create-client.js
index 79552c4..955f2f9 100644
--- a/server/migrations/20180717132333-create-client.js
+++ b/server/migrations/20180717132333-create-client.js
@@ -11,6 +11,9 @@ module.exports = {
name: {
type: Sequelize.STRING
},
+ description: {
+ type: Sequelize.STRING
+ },
ip: {
type: Sequelize.STRING
},