Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Diff view
1 change: 1 addition & 0 deletions services/celest_cloud_auth/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ targets:
options: &options
databases:
auth_database: lib/src/database/auth_database.dart
test_database: test/database/wrapper/wrapper_database.dart
schema_dir: drift_schema/
test_dir: test/database/

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1016,6 +1016,8 @@ final class Schema3 extends i0.VersionedSchema {
celestFunctionsTriggerCreate,
celestFunctionsTriggerDelete,
celestCloudAuthMeta,
i1.OnCreateQuery(
'INSERT INTO _celest_cloud_auth_meta (schema_version) VALUES (3) ON CONFLICT DO NOTHING'),
cedarRelationshipsFkEntityIdx,
cedarRelationshipsFkParentIdx,
cedarPolicies,
Expand Down Expand Up @@ -1471,6 +1473,8 @@ final class Schema4 extends i0.VersionedSchema {
cloudAuthFunctionsCreateTrg,
cloudAuthFunctionsDeleteTrg,
cloudAuthMeta,
i1.OnCreateQuery(
'INSERT INTO cloud_auth_meta (schema_version) VALUES (4) ON CONFLICT DO NOTHING'),
cloudAuthCryptoKeys,
cloudAuthCryptoKeysExternalCryptoKeyIdIdx,
cloudAuthSessions,
Expand Down Expand Up @@ -1925,6 +1929,8 @@ final class Schema5 extends i0.VersionedSchema {
cloudAuthFunctionsCreateTrg,
cloudAuthFunctionsDeleteTrg,
cloudAuthMeta,
i1.OnCreateQuery(
'INSERT INTO cloud_auth_meta (schema_version) VALUES (5) ON CONFLICT DO NOTHING'),
cloudAuthCryptoKeys,
cloudAuthCryptoKeysExternalCryptoKeyIdIdx,
cloudAuthSessions,
Expand Down Expand Up @@ -2414,6 +2420,8 @@ final class Schema6 extends i0.VersionedSchema {
cloudAuthFunctionsCreateTrg,
cloudAuthFunctionsDeleteTrg,
cloudAuthMeta,
i1.OnCreateQuery(
'INSERT INTO cloud_auth_meta (schema_version) VALUES (6) ON CONFLICT DO NOTHING'),
cloudAuthCryptoKeys,
cloudAuthCryptoKeysExternalCryptoKeyIdIdx,
cloudAuthSessions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5280,6 +5280,8 @@ class DatabaseAtV3 extends GeneratedDatabase {
celestFunctionsTriggerCreate,
celestFunctionsTriggerDelete,
celestCloudAuthMeta,
OnCreateQuery(
'INSERT INTO _celest_cloud_auth_meta (schema_version) VALUES (3) ON CONFLICT DO NOTHING'),
cedarRelationshipsFkEntityIdx,
cedarRelationshipsFkParentIdx,
cedarPolicies,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5312,6 +5312,8 @@ class DatabaseAtV4 extends GeneratedDatabase {
cloudAuthFunctionsCreateTrg,
cloudAuthFunctionsDeleteTrg,
cloudAuthMeta,
OnCreateQuery(
'INSERT INTO cloud_auth_meta (schema_version) VALUES (4) ON CONFLICT DO NOTHING'),
cloudAuthCryptoKeys,
cloudAuthCryptoKeysExternalCryptoKeyIdIdx,
cloudAuthSessions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5288,6 +5288,8 @@ class DatabaseAtV5 extends GeneratedDatabase {
cloudAuthFunctionsCreateTrg,
cloudAuthFunctionsDeleteTrg,
cloudAuthMeta,
OnCreateQuery(
'INSERT INTO cloud_auth_meta (schema_version) VALUES (5) ON CONFLICT DO NOTHING'),
cloudAuthCryptoKeys,
cloudAuthCryptoKeysExternalCryptoKeyIdIdx,
cloudAuthSessions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5495,6 +5495,8 @@ class DatabaseAtV6 extends GeneratedDatabase {
cloudAuthFunctionsCreateTrg,
cloudAuthFunctionsDeleteTrg,
cloudAuthMeta,
OnCreateQuery(
'INSERT INTO cloud_auth_meta (schema_version) VALUES (6) ON CONFLICT DO NOTHING'),
cloudAuthCryptoKeys,
cloudAuthCryptoKeysExternalCryptoKeyIdIdx,
cloudAuthSessions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5475,6 +5475,8 @@ class DatabaseAtV1 extends GeneratedDatabase {
cloudAuthFunctionsCreateTrg,
cloudAuthFunctionsDeleteTrg,
cloudAuthMeta,
OnCreateQuery(
'INSERT INTO cloud_auth_meta (schema_version) VALUES (4) ON CONFLICT DO NOTHING'),
cloudAuthCryptoKeys,
cloudAuthCryptoKeysExternalCryptoKeyIdIdx,
cloudAuthSessions,
Expand Down
Loading