1
vote
1answer
48 views

Database structure that can effectively gauge trends and popularity?

So! Let's say I have a website with various assortments of widgets. These widgets are subject to being 'Liked' by a user. Well, how would I be able to gauge the popularity of any given widget in a ...
1
vote
1answer
95 views

Best Data Model for Invitations?

I am trying to decide on the best data model to implement Invitation process for a website, that will reduce overhead but also would make sense. My model will have an InvitationResponses look-up ...
0
votes
2answers
109 views

Model Associations and Data Modelling

I am developing a web app for an art gallery, and I want to check I have set up the data model correctly. I have a people table and an artists table. Some of the people are artists and some are not. ...
2
votes
3answers
134 views

Storing information on unregistered customer users

An issue that has come to light is to open up our application (we can visualise it a bit like an online shop) to unregistered users. At the moment, there is an admin system where staff are added by ...
9
votes
8answers
500 views

What ways are there to store information about an anonymous/guest user in a database?

Our application has an online shop among other features, and users are normally requested to register before completing a sale, creating a unique customer_ID in the process. When they return, they can ...
2
votes
1answer
116 views

Database model verification

I am trying to build an app where users will be able to transfer tokens for games between each other. Right now I have this design in mind database design link Each party will only have one ...
1
vote
2answers
247 views

Help needed on planning an SQL database

I'm a student learning SQL and PHP, I have been set a task to create a student feedback form using PHP and mySQLi, and im really stuck at getting my head around how to design the database for the ...
3
votes
1answer
172 views

Modeling People/Company Roles

Ive been working on a project which handles jobs for a home maintenance service, but Im having a difficult time modeling the roles that different people and companies play. If it matters the system ...
2
votes
1answer
179 views

Object Modeling in PHP

I've been a procedural programmer for a long time, and I have started working in OO PHP specifically, and Perl to a lesser extent. My query deals with a best approach and basic skills in object ...
0
votes
1answer
98 views

CakePHP: How to specify models while retrieving data?

I want to retrive data with recursive level 3. The problem is that It adds all 8 linked models but I need data from only three data models. Is there any way to ignore some models or specifically ...
2
votes
2answers
407 views

Domain Object that needs more than one Data Mapper

I'm trying to figure out how to reuse Domain Models in different parts of the application and I have a feeling that the Data Mapper pattern is the way forward. The example below has methods that ...
1
vote
2answers
1k views

CakePHP - Custom hasOne Object Association - Using a Join Table instead of in-table foreign keys?

In CakePHP, I'm trying to build a $hasOne relationship, but I can't add a foreign key to the tables (for legacy reasons). Is there any way I can create a join table (object1_object2) and link them ...
1
vote
4answers
192 views

What is the best practice way to build my model?

I'm currently rebuilding an admin application and looking for your recommendations for best-practice! Excuse me if I don't have the right terminology, but how should I go about the following? Take ...
5
votes
1answer
3k views

cakePHP data model with multiple foreign keys to same table

Based on cakePHP's data model conventions, to setup a foreign key I would specify a column with the source_table followed by an _id. I have an accounts and an account_messages table. Now the ...
0
votes
3answers
58 views

Object model for persons/workers who can be of multiple types (“jobs”)

Let's say I'm modeling a workforce of workaholics. We have Bob, who is both a plumber and a carpenter by trade. There's Jane, who is a teacher. And finally Jack, the detective, bowling-alley ...
2
votes
6answers
507 views

How to create SQL query for “Likes in common”

Currently I'm building a system (php and mysql), that on the user profile allows you to add "favorite music artists" to a list. 've been trying to figure out a way to compare the user likes to other ...
0
votes
1answer
56 views

Updating Linking Tables

I've currently adding a bit of functionality that manages holiday lettings on top of a CMS that runs on PHP and MySQL. The CMS stores the property details on a couple of tables, and I'm adding a ...
1
vote
3answers
1k views

Find duplicate content using MySQL and PHP

I am facing a problem on developing my web app, here is the description: This webapp (still in alpha) is based on user generated content (usually short articles although their length can become quite ...
1
vote
2answers
1k views

MySQL data modeling: Multiple user types / Activity / Following

I have a project in which there is a site with multiple user types. And I am having trouble wrapping my head around the best practice for this. I want to be able to get activity from (nodes) you ...
2
votes
2answers
243 views

Good resources on e-shop, e-commerce store Software Design?

I'm designing an online store myself from scratch and I' really missing some valuable rources about the common problems and solutions found in designing and implementing a s-shop/e-commerce system Do ...
1
vote
2answers
747 views

MySQL data modeling

I have this current problem with data i have to represent in a MySQL database: I have to support different kinds of products with different data each one, for example, cars, hotel rooms, books, etc. ...