Skip to content

Commit 776a3a8

Browse files
committed
renamed from addr_ to addressables_
1 parent 38b6b64 commit 776a3a8

56 files changed

Lines changed: 201 additions & 201 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Analyzer/Properties/Resources.Designer.cs

Lines changed: 46 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_bundle_dependencies
1+
CREATE TABLE IF NOT EXISTS addressables_build_bundle_dependencies
22
(
33
bundle_id INTEGER,
44
build_id INTEGER,
55
dependency_rid INTEGER,
66
PRIMARY KEY (bundle_id, build_id, dependency_rid),
7-
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addressables_build_bundles(id, build_id)
88
);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_bundle_dependent_bundles
1+
CREATE TABLE IF NOT EXISTS addressables_build_bundle_dependent_bundles
22
(
33
bundle_id INTEGER,
44
build_id INTEGER,
55
dependent_bundle_rid INTEGER,
66
PRIMARY KEY (bundle_id, build_id, dependent_bundle_rid),
7-
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addressables_build_bundles(id, build_id)
88
);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_bundle_expanded_dependencies
1+
CREATE TABLE IF NOT EXISTS addressables_build_bundle_expanded_dependencies
22
(
33
bundle_id INTEGER,
44
build_id INTEGER,
55
dependency_rid INTEGER,
66
PRIMARY KEY (bundle_id, build_id, dependency_rid),
7-
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addressables_build_bundles(id, build_id)
88
);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_bundle_files
1+
CREATE TABLE IF NOT EXISTS addressables_build_bundle_files
22
(
33
bundle_id INTEGER,
44
build_id INTEGER,
55
file_rid INTEGER,
66
PRIMARY KEY (bundle_id, build_id, file_rid),
7-
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addressables_build_bundles(id, build_id)
88
);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_bundle_regular_dependencies
1+
CREATE TABLE IF NOT EXISTS addressables_build_bundle_regular_dependencies
22
(
33
bundle_id INTEGER,
44
build_id INTEGER,
55
dependency_rid INTEGER,
66
PRIMARY KEY (bundle_id, build_id, dependency_rid),
7-
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addressables_build_bundles(id, build_id)
88
);

Analyzer/Resources/AddrBuildBundles.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_bundles
1+
CREATE TABLE IF NOT EXISTS addressables_build_bundles
22
(
33
id INTEGER,
44
build_id INTEGER,
@@ -19,4 +19,4 @@ CREATE TABLE IF NOT EXISTS addr_build_bundles
1919
PRIMARY KEY (id, build_id)
2020
);
2121

22-
CREATE VIEW IF NOT EXISTS addr_build_cached_bundles AS SELECT build_id, concat(internal_name, '.bundle') AS cached_name, name AS name_in_catalog FROM addr_build_bundles;
22+
CREATE VIEW IF NOT EXISTS addressables_build_cached_bundles AS SELECT build_id, concat(internal_name, '.bundle') AS cached_name, name AS name_in_catalog FROM addressables_build_bundles;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_data_from_other_asset_object_references
1+
CREATE TABLE IF NOT EXISTS addressables_build_data_from_other_asset_object_references
22
(
33
data_from_other_asset_id INTEGER,
44
build_id INTEGER,
55
local_identifier_in_file INTEGER,
66
asset_id INTEGER,
77
object_id INTEGER,
88
PRIMARY KEY (data_from_other_asset_id, build_id, local_identifier_in_file, asset_id, object_id),
9-
FOREIGN KEY (data_from_other_asset_id, build_id, local_identifier_in_file) REFERENCES addr_build_data_from_other_asset_objects(data_from_other_asset_id, build_id, local_identifier_in_file)
9+
FOREIGN KEY (data_from_other_asset_id, build_id, local_identifier_in_file) REFERENCES addressables_build_data_from_other_asset_objects(data_from_other_asset_id, build_id, local_identifier_in_file)
1010
);

Analyzer/Resources/AddrBuildDataFromOtherAssetObjects.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_data_from_other_asset_objects
1+
CREATE TABLE IF NOT EXISTS addressables_build_data_from_other_asset_objects
22
(
33
data_from_other_asset_id INTEGER,
44
build_id INTEGER,
@@ -9,5 +9,5 @@ CREATE TABLE IF NOT EXISTS addr_build_data_from_other_asset_objects
99
serialized_size INTEGER,
1010
streamed_size INTEGER,
1111
PRIMARY KEY (data_from_other_asset_id, build_id, local_identifier_in_file),
12-
FOREIGN KEY (data_from_other_asset_id, build_id) REFERENCES addr_build_data_from_other_assets(id, build_id)
12+
FOREIGN KEY (data_from_other_asset_id, build_id) REFERENCES addressables_build_data_from_other_assets(id, build_id)
1313
);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
CREATE TABLE IF NOT EXISTS addr_build_data_from_other_asset_referencing_assets
1+
CREATE TABLE IF NOT EXISTS addressables_build_data_from_other_asset_referencing_assets
22
(
33
data_from_other_asset_id INTEGER,
44
build_id INTEGER,
55
referencing_asset_rid INTEGER,
66
PRIMARY KEY (data_from_other_asset_id, build_id, referencing_asset_rid),
7-
FOREIGN KEY (data_from_other_asset_id, build_id) REFERENCES addr_build_data_from_other_assets(id, build_id)
7+
FOREIGN KEY (data_from_other_asset_id, build_id) REFERENCES addressables_build_data_from_other_assets(id, build_id)
88
);

0 commit comments

Comments
 (0)