Skip to content

Cascade Deletion

Fuuz Wiki Import edited this page Jun 7, 2026 · 2 revisions

Cascade Deletion

Article Type: Reference Audience: Developers Module: Data Models

Cascade deletion is a feature that ensures data integrity by automatically removing dependent records when a referenced record is deleted. This feature simplifies database management by reducing the need for manual intervention to maintain referential integrity. However, it should be used with caution to prevent unintended data loss, especially in complex database relationships.

Configuring Cascade Deletion

When configuring a relation on a data model, choose the desired Deletion Reference behavior from the options below:

  • Prevent: This option prohibits the deletion of a record in the parent table if there are associated records in the child table(s). It enforces a restriction on deleting parent table records when related data exists in the child table(s), thus ensuring data integrity and preventing accidental deletion of critical records.
  • Cascade: When a record in the parent table is deleted, all associated records in the child table(s) are also automatically removed. This ensures that no orphaned records remain in the database.
  • Set Null: Upon deletion of a record in the parent table, the foreign key columns in the child table(s) are set to NULL. This severs the relationship between the parent and child records without deleting data. Note that this option necessitates that the foreign key columns permit NULL values.
  • Ignore: Deletion of a record in the parent table does not affect the foreign key columns in the child table(s). This results in a broken relationship between the parent and child records without any data being deleted.

Deletion Reference options

See Also


Source: support.fuuz.com

🏠 Home

Getting Started (14)
Training Guides (52)

Applications

Access & Users

Data Models & Schema

Screens

Weather Lookup Series — guided 3-part build

Data Flows & Integrations

Data, Reporting & Monitoring

Enterprise & Organizations

Platform Concepts & Architecture (10)
Screens & Application Design (17)
Data Models & Schema (8)
Data Flows & Scripting (51)

Designing Flows

Data Flow Nodes

JSONata Reference

Scripting

Integrations & Connectors (30)

General & iPaaS

Plex

EDI

IIoT & Edge Gateway (18)

Physical Device Connectors

Edge Data Connectors

Reporting, Documents & Dashboards (8)
Administration & Access Control (27)
Data Management (8)
Accelerators, Templates & Packages (8)
Design Standards (1)
How-To Guides (8)
FAQ & Troubleshooting (1)
Release Notes (117)

2026

2025

2024

2023

2022

2021

2020

Policies & Company (6)

Clone this wiki locally