Skip to content

Commit c20a705

Browse files
authored
add an index on Complementary-certification-courses
1 parent 6b1623a commit c20a705

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const up = async function (knex) {
2+
await knex.schema.table('complementary-certification-courses', function (table) {
3+
table.index('certificationCourseId');
4+
});
5+
};
6+
7+
const down = async function (knex) {
8+
await knex.schema.table('complementary-certification-courses', function (table) {
9+
table.dropIndex('certificationCourseId');
10+
});
11+
};
12+
export { down, up };

0 commit comments

Comments
 (0)