Skip to content

Instantly share code, notes, and snippets.

@byronmejia
Created August 23, 2016 14:41
Show Gist options
  • Save byronmejia/9bbe4730eabd24774695960dd9311593 to your computer and use it in GitHub Desktop.
Save byronmejia/9bbe4730eabd24774695960dd9311593 to your computer and use it in GitHub Desktop.
exports.up = (knex, Promise) => (
Promise.all(
knex.schema.createTable('logins', (t) => {
t.increments('id').primary();
t.string('username');
t.string('password');
t.timestamp('lastLogin');
})
)
);
exports.down = (knex, Promise) => (
Promise.all(
knex.schema.dropTable('logins')
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment