Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix(vm-runner): change processing_started_at column type to `timest…
Browse files Browse the repository at this point in the history
…amp` (matter-labs#2397)

## What ❔



## Why ❔


## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [ ] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [ ] Code has been formatted via `zk fmt` and `zk lint`.
  • Loading branch information
itegulov authored Jul 8, 2024
1 parent f2f4056 commit 4221155
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE vm_runner_protective_reads ALTER COLUMN processing_started_at TYPE TIME USING (null);
ALTER TABLE vm_runner_bwip ALTER COLUMN processing_started_at TYPE TIME USING (null);
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE vm_runner_protective_reads ALTER COLUMN processing_started_at TYPE TIMESTAMP USING (null);
ALTER TABLE vm_runner_bwip ALTER COLUMN processing_started_at TYPE TIMESTAMP USING (null);

0 comments on commit 4221155

Please sign in to comment.