This repository was archived by the owner on Feb 8, 2025. It is now read-only.
Commit c926b60 1 parent 24bf632 commit c926b60 Copy full SHA for c926b60
File tree 6 files changed +159
-150
lines changed
6 files changed +159
-150
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ configure instance set query_work_mem := <cfg::memory>"8MiB";
12
12
configure instance set shared_buffers := < cfg::memory > "2GiB";
13
13
14
14
# Total memory available to the database for caching - 75%
15
- configure instance set effective_cache_size := < cfg::memory > "3GiB ";
15
+ configure instance set effective_cache_size := < cfg::memory > "6GiB ";
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ CREATE MIGRATION m1ob6arfwyamzcpgk2hgzhby3iwv3moewthqacorsw2mtyjkopdoaq
2
+ ONTO m13qxppnkqofigih7dxkipm2lh6k3ahrqerachqhdzihw76nb6i3aa
3
+ {
4
+ ALTER TYPE default :: PolicyState {
5
+ ALTER PROPERTY isDraft {
6
+ USING ((__source__ ?= .draft));
7
+ };
8
+ };
9
+ };
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ module default {
19
19
required initState := .activationBlock ?= 0 ;
20
20
required hasBeenActive := exists .activationBlock;
21
21
required isActive := .isLatest and .hasBeenActive;
22
- required isDraft := exists .draft;
22
+ required isDraft := ( __source__ ?= .draft) ;
23
23
latest := (__source__ if .isLatest else latestPolicy (.account, .key));
24
24
draft := assert_single ((
25
25
with account := __source__ .account, key := __source__ .key
@@ -94,9 +94,9 @@ module default {
94
94
}
95
95
96
96
type TransfersConfig {
97
- multi limits: TransferLimit { constraint exclusive ; }
98
97
required defaultAllow: bool { default := true ; };
99
98
required budget: uint32;
99
+ multi limits: TransferLimit { constraint exclusive ; }
100
100
}
101
101
102
102
type TransferLimit {
Original file line number Diff line number Diff line change 1
1
[edgedb ]
2
- server-version = " 5.4 "
2
+ server-version = " 5.6 "
You can’t perform that action at this time.
0 commit comments