├── .gitignore ├── .idx └── dev.nix ├── LICENSE.md ├── README.md ├── audits └── .gitkeep ├── config.py ├── dag.mmd ├── generate_oriented_data_model.py ├── macros ├── .gitkeep └── __init__.py ├── models ├── .gitkeep ├── _blueprint_generators.py ├── _blueprint_utils.py ├── blueprints │ ├── bridges │ │ ├── bridge__adventure_works__address_types.yml │ │ ├── bridge__adventure_works__addresses.yml │ │ ├── bridge__adventure_works__bill_of_materials.yml │ │ ├── bridge__adventure_works__business_entity_addresses.yml │ │ ├── bridge__adventure_works__business_entity_contacts.yml │ │ ├── bridge__adventure_works__contact_types.yml │ │ ├── bridge__adventure_works__country_regions.yml │ │ ├── bridge__adventure_works__credit_cards.yml │ │ ├── bridge__adventure_works__cultures.yml │ │ ├── bridge__adventure_works__currencies.yml │ │ ├── bridge__adventure_works__currency_rates.yml │ │ ├── bridge__adventure_works__customers.yml │ │ ├── bridge__adventure_works__departments.yml │ │ ├── bridge__adventure_works__email_addresses.yml │ │ ├── bridge__adventure_works__employee_department_histories.yml │ │ ├── bridge__adventure_works__employee_pay_histories.yml │ │ ├── bridge__adventure_works__employees.yml │ │ ├── bridge__adventure_works__illustrations.yml │ │ ├── bridge__adventure_works__job_candidates.yml │ │ ├── bridge__adventure_works__locations.yml │ │ ├── bridge__adventure_works__person_phones.yml │ │ ├── bridge__adventure_works__persons.yml │ │ ├── bridge__adventure_works__phone_number_types.yml │ │ ├── bridge__adventure_works__product_categories.yml │ │ ├── bridge__adventure_works__product_cost_histories.yml │ │ ├── bridge__adventure_works__product_descriptions.yml │ │ ├── bridge__adventure_works__product_inventories.yml │ │ ├── bridge__adventure_works__product_list_price_histories.yml │ │ ├── bridge__adventure_works__product_model_illustrations.yml │ │ ├── bridge__adventure_works__product_models.yml │ │ ├── bridge__adventure_works__product_photos.yml │ │ ├── bridge__adventure_works__product_reviews.yml │ │ ├── bridge__adventure_works__product_subcategories.yml │ │ ├── bridge__adventure_works__product_vendors.yml │ │ ├── bridge__adventure_works__products.yml │ │ ├── bridge__adventure_works__purchase_order_details.yml │ │ ├── bridge__adventure_works__purchase_order_headers.yml │ │ ├── bridge__adventure_works__sales_order_details.yml │ │ ├── bridge__adventure_works__sales_order_headers.yml │ │ ├── bridge__adventure_works__sales_person_quota_histories.yml │ │ ├── bridge__adventure_works__sales_persons.yml │ │ ├── bridge__adventure_works__sales_reasons.yml │ │ ├── bridge__adventure_works__sales_tax_rates.yml │ │ ├── bridge__adventure_works__sales_territories.yml │ │ ├── bridge__adventure_works__sales_territory_histories.yml │ │ ├── bridge__adventure_works__scrap_reasons.yml │ │ ├── bridge__adventure_works__shifts.yml │ │ ├── bridge__adventure_works__ship_methods.yml │ │ ├── bridge__adventure_works__shopping_cart_items.yml │ │ ├── bridge__adventure_works__special_offers.yml │ │ ├── bridge__adventure_works__state_provinces.yml │ │ ├── bridge__adventure_works__stores.yml │ │ ├── bridge__adventure_works__transaction_histories.yml │ │ ├── bridge__adventure_works__transaction_history_archives.yml │ │ ├── bridge__adventure_works__unit_measures.yml │ │ ├── bridge__adventure_works__vendors.yml │ │ ├── bridge__adventure_works__work_order_routings.yml │ │ └── bridge__adventure_works__work_orders.yml │ ├── events │ │ ├── event__adventure_works__address_types.yml │ │ ├── event__adventure_works__addresses.yml │ │ ├── event__adventure_works__bill_of_materials.yml │ │ ├── event__adventure_works__business_entity_addresses.yml │ │ ├── event__adventure_works__business_entity_contacts.yml │ │ ├── event__adventure_works__contact_types.yml │ │ ├── event__adventure_works__country_regions.yml │ │ ├── event__adventure_works__credit_cards.yml │ │ ├── event__adventure_works__cultures.yml │ │ ├── event__adventure_works__currencies.yml │ │ ├── event__adventure_works__currency_rates.yml │ │ ├── event__adventure_works__customers.yml │ │ ├── event__adventure_works__departments.yml │ │ ├── event__adventure_works__email_addresses.yml │ │ ├── event__adventure_works__employee_department_histories.yml │ │ ├── event__adventure_works__employee_pay_histories.yml │ │ ├── event__adventure_works__employees.yml │ │ ├── event__adventure_works__illustrations.yml │ │ ├── event__adventure_works__job_candidates.yml │ │ ├── event__adventure_works__locations.yml │ │ ├── event__adventure_works__person_phones.yml │ │ ├── event__adventure_works__persons.yml │ │ ├── event__adventure_works__phone_number_types.yml │ │ ├── event__adventure_works__product_categories.yml │ │ ├── event__adventure_works__product_cost_histories.yml │ │ ├── event__adventure_works__product_descriptions.yml │ │ ├── event__adventure_works__product_inventories.yml │ │ ├── event__adventure_works__product_list_price_histories.yml │ │ ├── event__adventure_works__product_model_illustrations.yml │ │ ├── event__adventure_works__product_models.yml │ │ ├── event__adventure_works__product_photos.yml │ │ ├── event__adventure_works__product_reviews.yml │ │ ├── event__adventure_works__product_subcategories.yml │ │ ├── event__adventure_works__product_vendors.yml │ │ ├── event__adventure_works__products.yml │ │ ├── event__adventure_works__purchase_order_details.yml │ │ ├── event__adventure_works__purchase_order_headers.yml │ │ ├── event__adventure_works__sales_order_details.yml │ │ ├── event__adventure_works__sales_order_headers.yml │ │ ├── event__adventure_works__sales_person_quota_histories.yml │ │ ├── event__adventure_works__sales_persons.yml │ │ ├── event__adventure_works__sales_reasons.yml │ │ ├── event__adventure_works__sales_tax_rates.yml │ │ ├── event__adventure_works__sales_territories.yml │ │ ├── event__adventure_works__sales_territory_histories.yml │ │ ├── event__adventure_works__scrap_reasons.yml │ │ ├── event__adventure_works__shifts.yml │ │ ├── event__adventure_works__ship_methods.yml │ │ ├── event__adventure_works__shopping_cart_items.yml │ │ ├── event__adventure_works__special_offers.yml │ │ ├── event__adventure_works__state_provinces.yml │ │ ├── event__adventure_works__stores.yml │ │ ├── event__adventure_works__transaction_histories.yml │ │ ├── event__adventure_works__transaction_history_archives.yml │ │ ├── event__adventure_works__unit_measures.yml │ │ ├── event__adventure_works__vendors.yml │ │ ├── event__adventure_works__work_order_routings.yml │ │ └── event__adventure_works__work_orders.yml │ ├── hook │ │ ├── frame__adventure_works__address_types.yml │ │ ├── frame__adventure_works__addresses.yml │ │ ├── frame__adventure_works__bill_of_materials.yml │ │ ├── frame__adventure_works__business_entity_addresses.yml │ │ ├── frame__adventure_works__business_entity_contacts.yml │ │ ├── frame__adventure_works__contact_types.yml │ │ ├── frame__adventure_works__country_regions.yml │ │ ├── frame__adventure_works__credit_cards.yml │ │ ├── frame__adventure_works__cultures.yml │ │ ├── frame__adventure_works__currencies.yml │ │ ├── frame__adventure_works__currency_rates.yml │ │ ├── frame__adventure_works__customers.yml │ │ ├── frame__adventure_works__departments.yml │ │ ├── frame__adventure_works__email_addresses.yml │ │ ├── frame__adventure_works__employee_department_histories.yml │ │ ├── frame__adventure_works__employee_pay_histories.yml │ │ ├── frame__adventure_works__employees.yml │ │ ├── frame__adventure_works__illustrations.yml │ │ ├── frame__adventure_works__job_candidates.yml │ │ ├── frame__adventure_works__locations.yml │ │ ├── frame__adventure_works__person_phones.yml │ │ ├── frame__adventure_works__persons.yml │ │ ├── frame__adventure_works__phone_number_types.yml │ │ ├── frame__adventure_works__product_categories.yml │ │ ├── frame__adventure_works__product_cost_histories.yml │ │ ├── frame__adventure_works__product_descriptions.yml │ │ ├── frame__adventure_works__product_inventories.yml │ │ ├── frame__adventure_works__product_list_price_histories.yml │ │ ├── frame__adventure_works__product_model_illustrations.yml │ │ ├── frame__adventure_works__product_models.yml │ │ ├── frame__adventure_works__product_photos.yml │ │ ├── frame__adventure_works__product_reviews.yml │ │ ├── frame__adventure_works__product_subcategories.yml │ │ ├── frame__adventure_works__product_vendors.yml │ │ ├── frame__adventure_works__products.yml │ │ ├── frame__adventure_works__purchase_order_details.yml │ │ ├── frame__adventure_works__purchase_order_headers.yml │ │ ├── frame__adventure_works__sales_order_details.yml │ │ ├── frame__adventure_works__sales_order_headers.yml │ │ ├── frame__adventure_works__sales_person_quota_histories.yml │ │ ├── frame__adventure_works__sales_persons.yml │ │ ├── frame__adventure_works__sales_reasons.yml │ │ ├── frame__adventure_works__sales_tax_rates.yml │ │ ├── frame__adventure_works__sales_territories.yml │ │ ├── frame__adventure_works__sales_territory_histories.yml │ │ ├── frame__adventure_works__scrap_reasons.yml │ │ ├── frame__adventure_works__shifts.yml │ │ ├── frame__adventure_works__ship_methods.yml │ │ ├── frame__adventure_works__shopping_cart_items.yml │ │ ├── frame__adventure_works__special_offers.yml │ │ ├── frame__adventure_works__state_provinces.yml │ │ ├── frame__adventure_works__stores.yml │ │ ├── frame__adventure_works__transaction_histories.yml │ │ ├── frame__adventure_works__transaction_history_archives.yml │ │ ├── frame__adventure_works__unit_measures.yml │ │ ├── frame__adventure_works__vendors.yml │ │ ├── frame__adventure_works__work_order_routings.yml │ │ └── frame__adventure_works__work_orders.yml │ ├── peripherals │ │ ├── adventure_works__address_types.yml │ │ ├── adventure_works__addresses.yml │ │ ├── adventure_works__bill_of_materials.yml │ │ ├── adventure_works__business_entity_addresses.yml │ │ ├── adventure_works__business_entity_contacts.yml │ │ ├── adventure_works__contact_types.yml │ │ ├── adventure_works__country_regions.yml │ │ ├── adventure_works__credit_cards.yml │ │ ├── adventure_works__cultures.yml │ │ ├── adventure_works__currencies.yml │ │ ├── adventure_works__currency_rates.yml │ │ ├── adventure_works__customers.yml │ │ ├── adventure_works__departments.yml │ │ ├── adventure_works__email_addresses.yml │ │ ├── adventure_works__employee_department_histories.yml │ │ ├── adventure_works__employee_pay_histories.yml │ │ ├── adventure_works__employees.yml │ │ ├── adventure_works__illustrations.yml │ │ ├── adventure_works__job_candidates.yml │ │ ├── adventure_works__locations.yml │ │ ├── adventure_works__person_phones.yml │ │ ├── adventure_works__persons.yml │ │ ├── adventure_works__phone_number_types.yml │ │ ├── adventure_works__product_categories.yml │ │ ├── adventure_works__product_cost_histories.yml │ │ ├── adventure_works__product_descriptions.yml │ │ ├── adventure_works__product_inventories.yml │ │ ├── adventure_works__product_list_price_histories.yml │ │ ├── adventure_works__product_model_illustrations.yml │ │ ├── adventure_works__product_models.yml │ │ ├── adventure_works__product_photos.yml │ │ ├── adventure_works__product_reviews.yml │ │ ├── adventure_works__product_subcategories.yml │ │ ├── adventure_works__product_vendors.yml │ │ ├── adventure_works__products.yml │ │ ├── adventure_works__purchase_order_details.yml │ │ ├── adventure_works__purchase_order_headers.yml │ │ ├── adventure_works__sales_order_details.yml │ │ ├── adventure_works__sales_order_headers.yml │ │ ├── adventure_works__sales_person_quota_histories.yml │ │ ├── adventure_works__sales_persons.yml │ │ ├── adventure_works__sales_reasons.yml │ │ ├── adventure_works__sales_tax_rates.yml │ │ ├── adventure_works__sales_territories.yml │ │ ├── adventure_works__sales_territory_histories.yml │ │ ├── adventure_works__scrap_reasons.yml │ │ ├── adventure_works__shifts.yml │ │ ├── adventure_works__ship_methods.yml │ │ ├── adventure_works__shopping_cart_items.yml │ │ ├── adventure_works__special_offers.yml │ │ ├── adventure_works__state_provinces.yml │ │ ├── adventure_works__stores.yml │ │ ├── adventure_works__transaction_histories.yml │ │ ├── adventure_works__transaction_history_archives.yml │ │ ├── adventure_works__unit_measures.yml │ │ ├── adventure_works__vendors.yml │ │ ├── adventure_works__work_order_routings.yml │ │ └── adventure_works__work_orders.yml │ └── raw │ │ ├── raw__adventure_works__address_types.yml │ │ ├── raw__adventure_works__addresses.yml │ │ ├── raw__adventure_works__bill_of_materials.yml │ │ ├── raw__adventure_works__business_entity_addresses.yml │ │ ├── raw__adventure_works__business_entity_contacts.yml │ │ ├── raw__adventure_works__contact_types.yml │ │ ├── raw__adventure_works__country_regions.yml │ │ ├── raw__adventure_works__credit_cards.yml │ │ ├── raw__adventure_works__cultures.yml │ │ ├── raw__adventure_works__currencies.yml │ │ ├── raw__adventure_works__currency_rates.yml │ │ ├── raw__adventure_works__customers.yml │ │ ├── raw__adventure_works__departments.yml │ │ ├── raw__adventure_works__email_addresses.yml │ │ ├── raw__adventure_works__employee_department_histories.yml │ │ ├── raw__adventure_works__employee_pay_histories.yml │ │ ├── raw__adventure_works__employees.yml │ │ ├── raw__adventure_works__illustrations.yml │ │ ├── raw__adventure_works__job_candidates.yml │ │ ├── raw__adventure_works__locations.yml │ │ ├── raw__adventure_works__person_phones.yml │ │ ├── raw__adventure_works__persons.yml │ │ ├── raw__adventure_works__phone_number_types.yml │ │ ├── raw__adventure_works__product_categories.yml │ │ ├── raw__adventure_works__product_cost_histories.yml │ │ ├── raw__adventure_works__product_descriptions.yml │ │ ├── raw__adventure_works__product_inventories.yml │ │ ├── raw__adventure_works__product_list_price_histories.yml │ │ ├── raw__adventure_works__product_model_illustrations.yml │ │ ├── raw__adventure_works__product_models.yml │ │ ├── raw__adventure_works__product_photos.yml │ │ ├── raw__adventure_works__product_reviews.yml │ │ ├── raw__adventure_works__product_subcategories.yml │ │ ├── raw__adventure_works__product_vendors.yml │ │ ├── raw__adventure_works__products.yml │ │ ├── raw__adventure_works__purchase_order_details.yml │ │ ├── raw__adventure_works__purchase_order_headers.yml │ │ ├── raw__adventure_works__sales_order_details.yml │ │ ├── raw__adventure_works__sales_order_headers.yml │ │ ├── raw__adventure_works__sales_person_quota_histories.yml │ │ ├── raw__adventure_works__sales_persons.yml │ │ ├── raw__adventure_works__sales_reasons.yml │ │ ├── raw__adventure_works__sales_tax_rates.yml │ │ ├── raw__adventure_works__sales_territories.yml │ │ ├── raw__adventure_works__sales_territory_histories.yml │ │ ├── raw__adventure_works__scrap_reasons.yml │ │ ├── raw__adventure_works__shifts.yml │ │ ├── raw__adventure_works__ship_methods.yml │ │ ├── raw__adventure_works__shopping_cart_items.yml │ │ ├── raw__adventure_works__special_offers.yml │ │ ├── raw__adventure_works__state_provinces.yml │ │ ├── raw__adventure_works__stores.yml │ │ ├── raw__adventure_works__transaction_histories.yml │ │ ├── raw__adventure_works__transaction_history_archives.yml │ │ ├── raw__adventure_works__unit_measures.yml │ │ ├── raw__adventure_works__vendors.yml │ │ ├── raw__adventure_works__work_order_routings.yml │ │ └── raw__adventure_works__work_orders.yml ├── dab__hook__blueprint.py ├── dar__calendar.sql ├── dar__peripheral__blueprint.py ├── dar__puppini_bridge__as_of.py ├── dar__staging__bridges__blueprint.py ├── dar__staging__events__blueprint.py ├── das__raw__blueprint.py ├── hook__core_business_concepts.yml ├── hook__frames.yml └── raw_schema.yaml ├── pipelines ├── adventure_works.py ├── duckdb_to_iceberg.py └── schemas │ ├── export │ ├── adventure_works.schema.yaml │ ├── duckdb_dab.schema.yaml │ └── duckdb_dar.schema.yaml │ └── import │ ├── adventure_works.schema.yaml │ ├── duckdb_dab.schema.yaml │ └── duckdb_dar.schema.yaml ├── pyproject.toml ├── queries ├── analyze_row_count_changes.py ├── dab.frame__adventure_works__sales_order_details.sql ├── dab.frame__adventure_works__sales_order_details__refactored.sql ├── explain_analyze_frame.txt ├── explode_date_range.sql ├── shipping_kpis.sql └── total_rows.py ├── seeds └── .gitkeep ├── sqlmesh_dag_to_mermaid.py ├── streamlit └── dashboard.py ├── tests └── .gitkeep └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/.gitignore -------------------------------------------------------------------------------- /.idx/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/.idx/dev.nix -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/README.md -------------------------------------------------------------------------------- /audits/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/config.py -------------------------------------------------------------------------------- /dag.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/dag.mmd -------------------------------------------------------------------------------- /generate_oriented_data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/generate_oriented_data_model.py -------------------------------------------------------------------------------- /macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/_blueprint_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/_blueprint_generators.py -------------------------------------------------------------------------------- /models/_blueprint_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/_blueprint_utils.py -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__address_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__address_types.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__addresses.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__bill_of_materials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__bill_of_materials.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__business_entity_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__business_entity_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__business_entity_contacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__business_entity_contacts.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__contact_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__contact_types.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__country_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__country_regions.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__credit_cards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__credit_cards.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__cultures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__cultures.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__currencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__currencies.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__currency_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__currency_rates.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__customers.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__departments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__departments.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__email_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__email_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__employee_department_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__employee_department_histories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__employee_pay_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__employee_pay_histories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__employees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__employees.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__job_candidates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__job_candidates.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__locations.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__person_phones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__person_phones.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__persons.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__phone_number_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__phone_number_types.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_categories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_cost_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_cost_histories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_descriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_descriptions.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_inventories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_inventories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_list_price_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_list_price_histories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_model_illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_model_illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_models.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_photos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_photos.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_reviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_reviews.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_subcategories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_subcategories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__product_vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__product_vendors.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__products.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__purchase_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__purchase_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__purchase_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__purchase_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_person_quota_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_person_quota_histories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_persons.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_tax_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_tax_rates.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_territories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_territories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__sales_territory_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__sales_territory_histories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__scrap_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__scrap_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__shifts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__shifts.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__ship_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__ship_methods.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__shopping_cart_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__shopping_cart_items.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__special_offers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__special_offers.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__state_provinces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__state_provinces.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__stores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__stores.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__transaction_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__transaction_histories.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__transaction_history_archives.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__transaction_history_archives.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__unit_measures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__unit_measures.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__vendors.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__work_order_routings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__work_order_routings.yml -------------------------------------------------------------------------------- /models/blueprints/bridges/bridge__adventure_works__work_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/bridges/bridge__adventure_works__work_orders.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__address_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__address_types.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__addresses.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__bill_of_materials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__bill_of_materials.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__business_entity_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__business_entity_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__business_entity_contacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__business_entity_contacts.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__contact_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__contact_types.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__country_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__country_regions.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__credit_cards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__credit_cards.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__cultures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__cultures.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__currencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__currencies.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__currency_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__currency_rates.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__customers.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__departments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__departments.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__email_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__email_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__employee_department_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__employee_department_histories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__employee_pay_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__employee_pay_histories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__employees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__employees.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__job_candidates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__job_candidates.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__locations.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__person_phones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__person_phones.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__persons.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__phone_number_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__phone_number_types.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_categories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_cost_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_cost_histories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_descriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_descriptions.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_inventories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_inventories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_list_price_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_list_price_histories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_model_illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_model_illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_models.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_photos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_photos.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_reviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_reviews.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_subcategories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_subcategories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__product_vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__product_vendors.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__products.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__purchase_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__purchase_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__purchase_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__purchase_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_person_quota_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_person_quota_histories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_persons.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_tax_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_tax_rates.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_territories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_territories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__sales_territory_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__sales_territory_histories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__scrap_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__scrap_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__shifts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__shifts.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__ship_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__ship_methods.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__shopping_cart_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__shopping_cart_items.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__special_offers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__special_offers.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__state_provinces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__state_provinces.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__stores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__stores.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__transaction_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__transaction_histories.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__transaction_history_archives.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__transaction_history_archives.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__unit_measures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__unit_measures.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__vendors.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__work_order_routings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__work_order_routings.yml -------------------------------------------------------------------------------- /models/blueprints/events/event__adventure_works__work_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/events/event__adventure_works__work_orders.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__address_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__address_types.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__addresses.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__bill_of_materials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__bill_of_materials.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__business_entity_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__business_entity_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__business_entity_contacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__business_entity_contacts.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__contact_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__contact_types.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__country_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__country_regions.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__credit_cards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__credit_cards.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__cultures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__cultures.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__currencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__currencies.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__currency_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__currency_rates.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__customers.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__departments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__departments.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__email_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__email_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__employee_department_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__employee_department_histories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__employee_pay_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__employee_pay_histories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__employees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__employees.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__job_candidates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__job_candidates.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__locations.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__person_phones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__person_phones.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__persons.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__phone_number_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__phone_number_types.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_categories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_cost_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_cost_histories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_descriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_descriptions.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_inventories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_inventories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_list_price_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_list_price_histories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_model_illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_model_illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_models.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_photos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_photos.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_reviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_reviews.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_subcategories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_subcategories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__product_vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__product_vendors.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__products.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__purchase_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__purchase_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__purchase_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__purchase_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_person_quota_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_person_quota_histories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_persons.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_tax_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_tax_rates.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_territories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_territories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__sales_territory_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__sales_territory_histories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__scrap_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__scrap_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__shifts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__shifts.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__ship_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__ship_methods.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__shopping_cart_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__shopping_cart_items.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__special_offers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__special_offers.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__state_provinces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__state_provinces.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__stores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__stores.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__transaction_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__transaction_histories.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__transaction_history_archives.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__transaction_history_archives.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__unit_measures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__unit_measures.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__vendors.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__work_order_routings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__work_order_routings.yml -------------------------------------------------------------------------------- /models/blueprints/hook/frame__adventure_works__work_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/hook/frame__adventure_works__work_orders.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__address_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__address_types.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__addresses.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__bill_of_materials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__bill_of_materials.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__business_entity_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__business_entity_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__business_entity_contacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__business_entity_contacts.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__contact_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__contact_types.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__country_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__country_regions.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__credit_cards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__credit_cards.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__cultures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__cultures.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__currencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__currencies.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__currency_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__currency_rates.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__customers.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__departments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__departments.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__email_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__email_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__employee_department_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__employee_department_histories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__employee_pay_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__employee_pay_histories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__employees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__employees.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__job_candidates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__job_candidates.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__locations.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__person_phones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__person_phones.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__persons.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__phone_number_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__phone_number_types.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_categories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_cost_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_cost_histories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_descriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_descriptions.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_inventories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_inventories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_list_price_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_list_price_histories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_model_illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_model_illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_models.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_photos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_photos.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_reviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_reviews.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_subcategories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_subcategories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__product_vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__product_vendors.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__products.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__purchase_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__purchase_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__purchase_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__purchase_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_person_quota_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_person_quota_histories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_persons.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_tax_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_tax_rates.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_territories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_territories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__sales_territory_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__sales_territory_histories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__scrap_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__scrap_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__shifts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__shifts.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__ship_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__ship_methods.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__shopping_cart_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__shopping_cart_items.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__special_offers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__special_offers.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__state_provinces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__state_provinces.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__stores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__stores.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__transaction_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__transaction_histories.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__transaction_history_archives.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__transaction_history_archives.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__unit_measures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__unit_measures.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__vendors.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__work_order_routings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__work_order_routings.yml -------------------------------------------------------------------------------- /models/blueprints/peripherals/adventure_works__work_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/peripherals/adventure_works__work_orders.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__address_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__address_types.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__addresses.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__bill_of_materials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__bill_of_materials.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__business_entity_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__business_entity_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__business_entity_contacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__business_entity_contacts.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__contact_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__contact_types.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__country_regions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__country_regions.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__credit_cards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__credit_cards.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__cultures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__cultures.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__currencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__currencies.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__currency_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__currency_rates.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__customers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__customers.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__departments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__departments.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__email_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__email_addresses.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__employee_department_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__employee_department_histories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__employee_pay_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__employee_pay_histories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__employees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__employees.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__job_candidates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__job_candidates.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__locations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__locations.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__person_phones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__person_phones.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__persons.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__phone_number_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__phone_number_types.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_categories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_cost_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_cost_histories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_descriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_descriptions.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_inventories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_inventories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_list_price_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_list_price_histories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_model_illustrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_model_illustrations.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_models.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_photos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_photos.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_reviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_reviews.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_subcategories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_subcategories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__product_vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__product_vendors.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__products.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__purchase_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__purchase_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__purchase_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__purchase_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_order_details.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_order_details.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_order_headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_order_headers.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_person_quota_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_person_quota_histories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_persons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_persons.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_tax_rates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_tax_rates.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_territories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_territories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__sales_territory_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__sales_territory_histories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__scrap_reasons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__scrap_reasons.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__shifts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__shifts.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__ship_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__ship_methods.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__shopping_cart_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__shopping_cart_items.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__special_offers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__special_offers.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__state_provinces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__state_provinces.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__stores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__stores.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__transaction_histories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__transaction_histories.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__transaction_history_archives.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__transaction_history_archives.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__unit_measures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__unit_measures.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__vendors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__vendors.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__work_order_routings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__work_order_routings.yml -------------------------------------------------------------------------------- /models/blueprints/raw/raw__adventure_works__work_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/blueprints/raw/raw__adventure_works__work_orders.yml -------------------------------------------------------------------------------- /models/dab__hook__blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/dab__hook__blueprint.py -------------------------------------------------------------------------------- /models/dar__calendar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/dar__calendar.sql -------------------------------------------------------------------------------- /models/dar__peripheral__blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/dar__peripheral__blueprint.py -------------------------------------------------------------------------------- /models/dar__puppini_bridge__as_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/dar__puppini_bridge__as_of.py -------------------------------------------------------------------------------- /models/dar__staging__bridges__blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/dar__staging__bridges__blueprint.py -------------------------------------------------------------------------------- /models/dar__staging__events__blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/dar__staging__events__blueprint.py -------------------------------------------------------------------------------- /models/das__raw__blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/das__raw__blueprint.py -------------------------------------------------------------------------------- /models/hook__core_business_concepts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/hook__core_business_concepts.yml -------------------------------------------------------------------------------- /models/hook__frames.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/hook__frames.yml -------------------------------------------------------------------------------- /models/raw_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/models/raw_schema.yaml -------------------------------------------------------------------------------- /pipelines/adventure_works.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/adventure_works.py -------------------------------------------------------------------------------- /pipelines/duckdb_to_iceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/duckdb_to_iceberg.py -------------------------------------------------------------------------------- /pipelines/schemas/export/adventure_works.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/schemas/export/adventure_works.schema.yaml -------------------------------------------------------------------------------- /pipelines/schemas/export/duckdb_dab.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/schemas/export/duckdb_dab.schema.yaml -------------------------------------------------------------------------------- /pipelines/schemas/export/duckdb_dar.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/schemas/export/duckdb_dar.schema.yaml -------------------------------------------------------------------------------- /pipelines/schemas/import/adventure_works.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/schemas/import/adventure_works.schema.yaml -------------------------------------------------------------------------------- /pipelines/schemas/import/duckdb_dab.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/schemas/import/duckdb_dab.schema.yaml -------------------------------------------------------------------------------- /pipelines/schemas/import/duckdb_dar.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pipelines/schemas/import/duckdb_dar.schema.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/pyproject.toml -------------------------------------------------------------------------------- /queries/analyze_row_count_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/queries/analyze_row_count_changes.py -------------------------------------------------------------------------------- /queries/dab.frame__adventure_works__sales_order_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/queries/dab.frame__adventure_works__sales_order_details.sql -------------------------------------------------------------------------------- /queries/dab.frame__adventure_works__sales_order_details__refactored.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/queries/dab.frame__adventure_works__sales_order_details__refactored.sql -------------------------------------------------------------------------------- /queries/explain_analyze_frame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/queries/explain_analyze_frame.txt -------------------------------------------------------------------------------- /queries/explode_date_range.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/queries/explode_date_range.sql -------------------------------------------------------------------------------- /queries/shipping_kpis.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/queries/shipping_kpis.sql -------------------------------------------------------------------------------- /queries/total_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/queries/total_rows.py -------------------------------------------------------------------------------- /seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sqlmesh_dag_to_mermaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/sqlmesh_dag_to_mermaid.py -------------------------------------------------------------------------------- /streamlit/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/streamlit/dashboard.py -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattiasthalen/adventure-works/HEAD/uv.lock --------------------------------------------------------------------------------