Skip to content

Commit

Permalink
remove estimated_open_date
Browse files Browse the repository at this point in the history
  • Loading branch information
masimons committed Sep 30, 2024
1 parent 7e8235c commit 558a80e
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ exports.up = function (knex) {
return knex.schema.alterTable('grants', (table) => {
table.date('award_date');
table.date('forecast_creation_date');
table.date('estimated_open_date');
table.date('fiscal_year');
table.text('grantor_contact_name');
table.text('grantor_contact_phone_number');
Expand All @@ -21,7 +20,6 @@ exports.down = function (knex) {
return knex.schema.table('grants', (table) => {
table.dropColumn('award_date');
table.dropColumn('forecast_creation_date');
table.dropColumn('estimated_open_date');
table.dropColumn('fiscal_year');
table.dropColumn('grantor_contact_name');
table.dropColumn('grantor_contact_phone_number');
Expand Down

0 comments on commit 558a80e

Please sign in to comment.