fix: missed send_to_email column in sale estimate.

This commit is contained in:
Ahmed Bouhuolia
2020-10-26 12:48:26 +02:00
parent 4d3cd250fd
commit 92ddc1bf38
5 changed files with 11 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ exports.up = function(knex) {
table.string('estimate_number').index();
table.text('note');
table.text('terms_conditions');
table.text('send_to_email');
table.integer('user_id').unsigned().index();
table.timestamps();
});