UNPKG

@titanium/turbo

Version:

🚀 Axway Amplify tool to use Turbo for turbo charging your Appcelerator Titanium SDK Framework!

14 lines (12 loc) • 231 B
migration.up = function(migrator) { migrator.createTable({ columns: { name: 'TEXT', nickname: 'TEXT', fighterId: 'TEXT PRIMARY KEY' } }); }; migration.down = function(migrator) { migrator.dropTable('fighters'); };