0
votes
4answers
347 views

Laravel Cities relation foreign key

Im really new to laravel, and im sure im doing something wrong I have 2 tables. Cities And users_metadata My cities table look like this id | City | 1 | New York | 1 | Los Angeles | ...
2
votes
1answer
174 views

Symfony2 Doctrine ManyToMany doesn't persist

Hey guys I'm looking for help again. My problem is that two related ORM entities not getting stored. I run the following Unit test and it fails: public function testCategoryRelation() { ...
3
votes
3answers
133 views

Bidirectional OneToOne relationship not symmetric for save?

Is there any difference between saving an entity on the owner side or on the other side if PERSIST cascade type is used on the relation? @Entity public class Slot { @OneToOne(mappedBy = "slot", ...
0
votes
1answer
55 views

My World_Time DataBase design/ORM

I have a Database design I would like to get some feedback/help with. I have 3 different entities: Cities, TimeZones, Rules. a City is associated with 1 and only 1 TimeZone (not < 1, not > 1: ...
2
votes
1answer
80 views

Use of M2M Table and relationship to get specific data in sqlalchemy

I have Table # File : MyRelations.py ACC_ADD_TABLE = Table('acc_add_rel', METADATA, Column('acc_id', ForeignKey('acc.id'), nullable=False), Column('add_id', ...
0
votes
2answers
2k views

Doctrine Class “..\..” has no association named “…”

I hope you can help me with this problem because I really cannot see what is wrong here. I have 2 entities: RokZaPrijavuProjekta AND Predmet. RokZaPrijavuProjekta: /** * ...
5
votes
1answer
3k views

Starter question of declarative style SQLAlchemy relation()

I am quite new to SQLAlchemy, or even database programming, maybe my question is too simple. Now I have two class/table: class User(Base): __tablename__ = 'users' id = Column(Integer, ...
1
vote
2answers
153 views

How to make a relation between tables using SQLAlchemy?

Using SQLAlchemy, given tables such as these: locations_table = Table('locations', metadata, Column('id', Integer, primary_key=True), Column('name', Text), ) players_table = ...