You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- You are about to drop the column `blockStateTransitions` on the `BlockResult` table. All the data in the column will be lost.
5
+
- You are about to drop the column `protocolTransitions` on the `TransactionExecutionResult` table. All the data in the column will be lost.
6
+
- Added the required column `beforeBlockStateTransitions` to the `Block` table without a default value. This is not possible if the table is not empty.
7
+
- Added the required column `fromStateRoot` to the `Block` table without a default value. This is not possible if the table is not empty.
8
+
- Added the required column `afterBlockStateTransitions` to the `BlockResult` table without a default value. This is not possible if the table is not empty.
9
+
10
+
*/
11
+
-- AlterTable
12
+
ALTERTABLE"Block" ADD COLUMN "beforeBlockStateTransitions" JSON NOT NULL,
13
+
ADD COLUMN "fromStateRoot"TEXTNOT NULL;
14
+
15
+
-- AlterTable
16
+
ALTERTABLE"BlockResult" DROP COLUMN "blockStateTransitions",
17
+
ADD COLUMN "afterBlockStateTransitions" JSON NOT NULL,
18
+
ADD COLUMN "witnessedRoots"TEXT[];
19
+
20
+
-- AlterTable
21
+
ALTERTABLE"TransactionExecutionResult" DROP COLUMN "protocolTransitions";
0 commit comments