Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9014749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:35:09+00:00 2026-06-16T03:35:09+00:00

I have the following sample models: class Note(models.Model): text = models.TextField() author = models.OneToOneField(User)

  • 0

I have the following sample models:

class Note(models.Model):
    text = models.TextField()
    author = models.OneToOneField(User)
    date_created = models.DateField(auto_now_add=True)
    similar_note =  models.ForeignKey("self", related_name='similar_note', null=True, blank=True)

Say there are two notes Winner and Loser.

Loser has a field similar_note that points to Winner Note.

When I delete any of the two, both gets deleted, how do I prevent this from happening?
I have tried doing the same from the django admin interface as well, it happens from there as well.

PS: I am using django1.2, please don’t advice to upgrade, there are way too many constraints.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T03:35:11+00:00Added an answer on June 16, 2026 at 3:35 am

    As mentioned here:

    When Django deletes an object, by default it emulates the behavior of
    the SQL constraint ON DELETE CASCADE — in other words, any objects
    which had foreign keys pointing at the object to be deleted will be
    deleted along with it.

    This cascade behavior is customizable via the on_delete argument to
    the ForeignKey

    Please check the on_delete parameter for model field:

    user = models.ForeignKey(User, blank=True, null=True, on_delete=models.SET_NULL)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following django model (mapped to table 'A'): class A(models.Model): name =
I have the following models: class Territory(models.Model): name = models.CharField(max_length=30) power = models.ForeignKey(Power, null=True,
In a django application I have the following model: class Appointment(models.Model): #some other fields
I have the following two simple models for users and user groups: class User
I have the following models: class Post < ActiveRecord::Base has_and_belongs_to_many :countries end class User
in a django-tastypie app I have the following Django-models: class Car(models.Model): name=models.CharField('name',max_length=64) class CarTrack(models.Model):
Following is the simple database model i have: class Notes(db.Model): text = db.StringProperty(multiline=True) date
I have the following test sample: <Window x:Class=WpfScrollTest.Window1 xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml Title=Window1 Height=200 Width=200> <Border>
I have the following setup of models: User - has_many File (for userpics) Gallery
I'm writing an MVC2 app using DataAnnotations. I have a following Model: public class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.