Tagged Questions

1
vote
2answers
52 views

Database table structure for user albums and photos

Okay i'm creating a little community website. A user joins my site and he has the option to enter his informations upload photos add friends and post to his wall. By now i want to know how to ...
1
vote
2answers
93 views

MySQL Database Design Question, one to one,many to many, many to one, or too many?

I am in the process of setting up tables in my database for my first project. (Exciting!) I am having a hard time deciding what types of relationships I need to set up. I have the following basic ...
1
vote
4answers
129 views

Generaly in database design what is better one table with two references or one table?

Let's say i have people who search for jobs, and i have a list of jobs. So i have two tables: people and jobs. Now i have a list of skills of the person, and i have a list of skills for the job ...
1
vote
3answers
254 views

DB Schema Organization

I'm currently in the planning phase of building a scheduling web app (for volunteer staffing of events), and I've got a question for those with more experience. Background: There's a calendar of ...
1
vote
8answers
514 views

database relationships

does setting up proper relationships in a database help with anything else other than data integrity? do they improve or hinder performance?
0
votes
1answer
14 views

Relationships between tables

I have a table called objectives, each objective has zero to many cause-effect relationships with other objectives, these relationships I have to be stored in the database, let me know if there's a ...
0
votes
2answers
222 views

Rails database relationships

I have three models that I want to interact with each other. Kase, Person and and Company. I have (I think) setup the relationships correctly: class Kase < ActiveRecord::Base #HAS ONE COMPANY ...