Quantcast
Channel: Appcelerator Developer Center Q&A Unanswered Questions 20
Viewing all articles
Browse latest Browse all 8068

not saving to db after migration

$
0
0

i have a table groupChats, i have created migration file adding two columns like this

migration.up = function(db) {
db.db.execute('ALTER TABLE ' + db.table + ' ADD COLUMN groupID INTEGER;');
db.db.execute('ALTER TABLE ' + db.table + ' ADD COLUMN isNew INTEGER;');
};
now when i do a save like this
var s = Alloy.createModel("groupChats", {
            groupName : gc.groupName,
            userID : Uid,
            groupBy : gb,
            createdOn : new Date(),
            ischatting : 0,
            isNew : isNew2,
            groupID : groupID2
        });
s.save();
the variables have values but for new columns isNew and groupID the values are not saved in the db?

Viewing all articles
Browse latest Browse all 8068

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>