Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Self class reference #132

Open
remydev opened this issue Jul 18, 2019 · 2 comments
Open

Self class reference #132

remydev opened this issue Jul 18, 2019 · 2 comments
Labels
Milestone

Comments

@remydev
Copy link
Contributor

remydev commented Jul 18, 2019

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"}){}
@anykeyh
Copy link
Owner

anykeyh commented Jul 18, 2019

Hello,

Theorically this could work. What is the current behavior?

@remydev
Copy link
Contributor Author

remydev commented Jul 18, 2019

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

@anykeyh anykeyh added the bug label Jul 18, 2019
@anykeyh anykeyh added this to the v0.8 milestone Jul 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants