clear icon indicating copy to clipboard operation
clear copied to clipboard

Self class reference

Open remydev opened this issue 5 years ago • 2 comments

Hello, Is this supposed to work?

class Category
	include Clear::Model

	primary_key 

	column name : String
	
	has_many categories : Category
	belongs_to category : Category?

end


category = Category.new({name: "category1" })
category.save!
category.categories << Category.query.find_or_create({name: "category-child"}){}

remydev avatar Jul 18 '19 13:07 remydev

Hello,

Theorically this could work. What is the current behavior?

anykeyh avatar Jul 18 '19 13:07 anykeyh

I do have two new items in the database. But the link between them is not created.

remydev avatar Jul 18 '19 14:07 remydev