Skip to content

Commit

Permalink
Remove CreatedAt and UpdatedAt tables
Browse files Browse the repository at this point in the history
  • Loading branch information
sthuray committed Jun 15, 2024
1 parent 796e789 commit 5bfbfaf
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ export const up: Migration = async ({ context: sequelize }) => {
activity_name: {

Check failure on line 15 in backend/typescript/migrations/2024.06.15T16.51.26.create-activities-table.ts

View workflow job for this annotation

GitHub Actions / run-lint

Delete `····`
type: DataType.STRING,

Check failure on line 16 in backend/typescript/migrations/2024.06.15T16.51.26.create-activities-table.ts

View workflow job for this annotation

GitHub Actions / run-lint

Replace `··········` with `······`
allowNull: false,

Check failure on line 17 in backend/typescript/migrations/2024.06.15T16.51.26.create-activities-table.ts

View workflow job for this annotation

GitHub Actions / run-lint

Delete `····`
},
createdAt: DataType.DATE,
updatedAt: DataType.DATE,
}
});
};

Expand Down

0 comments on commit 5bfbfaf

Please sign in to comment.