You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
514 B
18 lines
514 B
2 years ago
|
exports.up = (knex) => {
|
||
|
return knex.schema.createTable('user_payment', (table) => {
|
||
|
table.increments('id');
|
||
|
table.timestamps(true, true);
|
||
|
|
||
|
// example of how to do a foreign key to a table
|
||
|
table.integer('user_id').notNullable();
|
||
|
table.foreign('user_id').references('id').inTable('user');
|
||
|
table.integer('payment_id').notNullable();
|
||
|
table.foreign('payment_id').references('id').inTable('payment');
|
||
|
})
|
||
|
};
|
||
|
|
||
|
exports.down = (knex) => {
|
||
|
return knex.schema.dropTable('user_payment');
|
||
|
};
|
||
|
|