Skip to content

Commit

Permalink
WebRunner 1.2.32 to fix bug user feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dominhquang committed Nov 27, 2024
1 parent b0b507f commit d56abe0
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,11 @@ export default class MigrationService {
const JobClass = MigrationScripts[keys[i]];
const key = keys[i];
const name = JobClass.name;
console.debug(key, name)

const check = await this.state.dbService.stores.migration.table.where({
name,
key
}).first();

console.debug(key, name, check)

if (!check || key.startsWith(EVERYTIME)) {
const job = new JobClass(this.state);

Expand Down

1 comment on commit d56abe0

@saltict
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.