How to Design a SaaS Database
Posted
by Josh Curren
on Stack Overflow
See other posts from Stack Overflow
or by Josh Curren
Published on 2010-02-04T18:11:43Z
Indexed on
2010/06/17
21:23 UTC
Read the original article
Hit count: 454
I have a web app that I built for a trucking company that I would like to offer as SaaS. What is the best way to design the database?
Should I create a new database for each company? Or should I use one database with tables that have a prefix of the company name? Or should I Use one database with one of each table and just add a company id field to the tables? Or is there some other way to do it?
© Stack Overflow or respective owner