Skip to content

Commit

Permalink
HARMONY-1873: explicitly specify varchar(255) for regression_test_ver…
Browse files Browse the repository at this point in the history
…sion.
  • Loading branch information
ygliuvt committed Sep 26, 2024
1 parent 77de633 commit a79ead0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exports.up = function (knex) {
return knex.schema.alterTable('service_deployments', (t) => {
t.string('regression_test_version');
t.string('regression_test_version', 255);
});
};

Expand Down

0 comments on commit a79ead0

Please sign in to comment.