Web应用程序的Mysql数据库结构

时间:2012-10-10 22:58:11

标签: mysql database structure

到目前为止我得到了这个模式:

Advertising Company Table
  advertising_company_id
  name

Placement Table
  placement_id
  name

Advertiser Table
  advertiser_id
  name

Location Table
  location_id
  name

Ads Table
  ad_id
  size
  price
  advertising_company_id
  placement_id
  advertiser_id
  location_id

问题1:这种架构是否正常,或者我应该改变什么?

感谢advnace

1 个答案:

答案 0 :(得分:0)

不知道您的项目/客户要求是什么,很难说。但它看起来很简单,可能会成为一个足够好的基线起点。我会将以下字段添加到所有表中:

created DATETIME() [default NOW()]
created_by INT [user ID]
modified DATETIME()
midified_by INT [user ID]

广告表

ad_start_time DATETIME()
ad_end_time DATETIME()
ad_type INT [you might need ad types?]
ad_invoice_id INT 

您是否在跟踪定价信息?

祝你好运