UNPKG

alloy

Version:

TiDev Titanium MVC Framework

27 lines (25 loc) 509 B
migration.up = function(migrator) { migrator.createTable({ 'columns': { 'username':'text primary key', 'realname':'text', 'email':'text', 'loggedIn':'integer', 'loggedInSince':'text', 'authKey':'text', 'theme':'integer' } }); migrator.insertRow({ 'username':'user', 'realname':'Jane Smith', 'email':'jane.smith@appcelerator.com', 'loggedIn':0, 'loggedInSince':'', 'authKey':'', 'theme':0 }); }; migration.down = function(migrator) { migrator.dropTable('user'); };