8000 1.7.x ce migration by vermakhushboo · Pull Request #9738 · appwrite/appwrite · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

1.7.x ce migration #9738

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 33 commits into from
May 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b249584
1.7.x ce migration
vermakhushboo May 9, 2025
9f4e0f5
Merge branch '1.7.x' into feat-ce-migration
vermakhushboo May 12, 2025
bebf6a4
Merge branch '1.7.x' into feat-ce-migration
vermakhushboo May 13, 2025
a3cb7c8
Add V23 migration and remove coroutines
vermakhushboo May 13, 2025
25a13d3
Sync with cloud
vermakhushboo May 13, 2025
f12e84a
Merge remote-tracking branch 'origin/1.7.x' into feat-ce-migration
abnegate May 16, 2025
ae2bc1f
Fix expire required
abnegate May 16, 2025
a23548f
Add domains + dnsRecords to platform
abnegate May 16, 2025
56fda6a
Add migration options
abnegate May 16, 2025
7344733
Use db loop methods, update names
abnegate May 16, 2025
907d968
Remove redundant doc migration
abnegate May 16, 2025
43fce76
Remove redundant namespace set
abnegate May 16, 2025
59ef807
Skip devKeys subquery
abnegate May 16, 2025
2d6d79d
Fix names
abnegate May 16, 2025
4d4cfef
Skip empty ID
abnegate May 16, 2025
768d005
Use create bulk attributes
abnegate May 16, 2025
4ce6587
Fix key matching
abnegate May 16, 2025
379ffd8
Disable coroutines
abnegate May 16, 2025
1b244f4
Merge remote-tracking branch 'origin/1.7.x' into feat-ce-migration
abnegate May 16, 2025
697d23e
Update database
abnegate May 16, 2025
15c13aa
Remove duplicate attribute
abnegate May 16, 2025
fa3894e
Fix extra collection keys
abnegate May 16, 2025
d6fd058
Ignore duplicate on create collection
abnegate May 16, 2025
19d040d
Remove redundant method
abnegate May 16, 2025
8ff4bc0
Fix count
abnegate May 16, 2025
ac38418
Update logs
abnegate May 16, 2025
43493f7
Remove invalid collections
abnegate May 16, 2025
be40068
Fix collection exists fallbacks
abnegate May 16, 2025
c56dba6
Add console
abnegate May 16, 2025
e22ef82
Safe multi-run by self-fallback
abnegate May 16, 2025
0400969
Fix type + resourceType fallbacks
abnegate May 16, 2025
a3722f5
Fix getting function for rule
abnegate May 16, 2025
91f8570
Format
abnegate May 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
22 changes: 22 additions & 0 deletions app/config/collections/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,28 @@
'array' => false,
'filters' => ['json', 'encrypt'],
],
[
'$id' => ID::custom('scopes'),
'type' => Database::VAR_STRING,
'format' => '',
'size' => Database::LENGTH_KEY,
'signed' => true,
'required' => false,
'default' => null,
'array' => true,
'filters' => [],
],
[
'$id' => ID::custom('expire'),
'type' => Database::VAR_DATETIME,
'format' => '',
'size' => 0,
'required' => false,
'signed' => false,
'default' => null,
'array' => false,
'filters' => ['datetime'],
],
],
'indexes' => [
[
Expand Down
4 changes: 2 additions & 2 deletions app/config/collections/platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
'$id' => ID::custom('templates'),
'type' => Database::VAR_STRING,
'format' => '',
'size' => 1000000, // TODO make sure size fits
'size' => 1_000_000, // TODO make sure size fits
'signed' => true,
'required' => false,
'default' => [],
Expand Down Expand Up @@ -1890,5 +1890,5 @@
'name' => 'vcsCommentLocks',
'attributes' => [],
'indexes' => []
]
],
];
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
0