Skip to content

Commit a57466e

Browse files
committed
move to serialized file commands
1 parent 1bfdd3e commit a57466e

File tree

62 files changed

+554
-112
lines changed

Some content is hidden

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

62 files changed

+554
-112
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
create table addr_build_bundle_dependencies
2+
(
3+
bundle_id INTEGER,
4+
build_id INTEGER,
5+
dependency_rid INTEGER,
6+
PRIMARY KEY (bundle_id, build_id, dependency_rid),
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
8+
);
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
create table addr_build_bundle_dependent_bundles
2+
(
3+
bundle_id INTEGER,
4+
build_id INTEGER,
5+
dependent_bundle_rid INTEGER,
6+
PRIMARY KEY (bundle_id, build_id, dependent_bundle_rid),
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
8+
);
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
create table addr_build_bundle_expanded_dependencies
2+
(
3+
bundle_id INTEGER,
4+
build_id INTEGER,
5+
dependency_rid INTEGER,
6+
PRIMARY KEY (bundle_id, build_id, dependency_rid),
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
8+
);
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
create table addr_build_bundle_files
2+
(
3+
bundle_id INTEGER,
4+
build_id INTEGER,
5+
file_rid INTEGER,
6+
PRIMARY KEY (bundle_id, build_id, file_rid),
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
8+
);
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
create table addr_build_bundle_regular_dependencies
2+
(
3+
bundle_id INTEGER,
4+
build_id INTEGER,
5+
dependency_rid INTEGER,
6+
PRIMARY KEY (bundle_id, build_id, dependency_rid),
7+
FOREIGN KEY (bundle_id, build_id) REFERENCES addr_build_bundles(id, build_id)
8+
);
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
create table addr_build_bundles
2+
(
3+
id INTEGER,
4+
build_id INTEGER,
5+
asset_count INTEGER,
6+
build_status INTEGER,
7+
crc INTEGER,
8+
compression TEXT,
9+
dependency_file_size INTEGER,
10+
expanded_dependency_file_size INTEGER,
11+
file_size INTEGER,
12+
group_rid INTEGER,
13+
hash TEXT,
14+
internal_name TEXT,
15+
load_path TEXT,
16+
name TEXT,
17+
provider TEXT,
18+
result_type TEXT,
19+
PRIMARY KEY (id, build_id)
20+
);
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
create table addr_build_data_from_other_asset_object_references
2+
(
3+
data_from_other_asset_id INTEGER,
4+
build_id INTEGER,
5+
local_identifier_in_file INTEGER,
6+
asset_id INTEGER,
7+
object_id INTEGER,
8+
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)
10+
);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
create table addr_build_data_from_other_asset_objects
2+
(
3+
data_from_other_asset_id INTEGER,
4+
build_id INTEGER,
5+
asset_type INTEGER,
6+
component_name TEXT,
7+
local_identifier_in_file INTEGER,
8+
object_name TEXT,
9+
serialized_size INTEGER,
10+
streamed_size INTEGER,
11+
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)
13+
);
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
create table addr_build_data_from_other_asset_referencing_assets
2+
(
3+
data_from_other_asset_id INTEGER,
4+
build_id INTEGER,
5+
referencing_asset_rid INTEGER,
6+
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)
8+
);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
create table addr_build_data_from_other_assets
2+
(
3+
id INTEGER,
4+
build_id INTEGER,
5+
asset_guid TEXT,
6+
asset_path TEXT,
7+
file INTEGER,
8+
main_asset_type INTEGER,
9+
object_count INTEGER,
10+
serialized_size INTEGER,
11+
streamed_size INTEGER,
12+
PRIMARY KEY (id, build_id)
13+
);

0 commit comments

Comments
 (0)