UNPKG

@titanium/turbo

Version:

Turbo is a variation of Titanium Alloy that adds some enhancements and customizations for rapid development.

15 lines (13 loc) 256 B
migration.up = function(migrator) { migrator.createTable({ columns: { id: 'INTEGER PRIMARY KEY AUTOINCREMENT', title: 'TEXT', subtitle: 'TEXT', image: 'TEXT' } }); }; migration.down = function(migrator) { migrator.dropTable('info'); };