mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
|
|
exports.up = function(knex) {
|
|
return knex.schema.createTable('oauth_clients', (table) => {
|
|
table.increments();
|
|
table.integer('client_id').unsigned();
|
|
table.string('client_secret');
|
|
table.string('redirect_uri');
|
|
});
|
|
};
|
|
|
|
exports.down = (knex) => knex.schema.dropTableIfExists('oauth_clients');
|