Built motion from commit 5b01f56.|0.0.106
[motion.git] / server / models / sms_room.js
index a51d180..e33304e 100644 (file)
@@ -11,7 +11,26 @@ module.exports = function(sequelize, DataTypes) {
     status: {
       type: DataTypes.ENUM('NEW', 'OPEN', 'CLOSED', 'UNMANAGED'),
       defaultValue: 'NEW'
-    }
+    },
+    tags: {
+      type: DataTypes.TEXT,
+      get: function() {
+        var tags;
+        if (this.getDataValue('tags')) {
+          tags = this.getDataValue('tags').split(';');
+          tags.pop();
+        } else {
+          tags = [];
+        }
+        return tags;
+      },
+      set: function(val) {
+        this.setDataValue('tags', val && val.length ? val.join(';') + ';' : null);
+      }
+    },
+    disposition: {
+      type: DataTypes.STRING
+    },
   }, {
     tableName: 'sms_rooms',
     associate: function(models) {