UNPKG

@titanium/turbo

Version:

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

15 lines (13 loc) 240 B
migration.up = function(migrator) { migrator.createTable({ 'columns': { 'title':'TEXT', 'text':'TEXT', 'mood':'TEXT', 'dateCreated':'TEXT' } }); }; migration.down = function(migrator) { migrator.dropTable('journal'); };