# place here only sql queries, that were executed on live AND dev sites !!!

CREATE TABLE Widgets (
  WidgetId int(11) NOT NULL auto_increment,
  Title varchar(255) NOT NULL default '',
  Description text,
  Email varchar(255) NOT NULL default '',
  `Type` tinyint(4) NOT NULL default '1',
  Phone varchar(50) NOT NULL default '',
  Qty double NOT NULL default '0',
  `Status` tinyint(4) NOT NULL default '2',
  CreatedOn int(11) NOT NULL default '0',
  Good tinyint(4) NOT NULL default '0',
  BirthTime int(10) unsigned default NULL,
  `Image` text,
  `DataFile` text,
  PRIMARY KEY  (WidgetId)
);

# ===== SQLs above this line already on LIVE ================================================================================================

# place here only sql queries, that were executed on dev site !!!


# ===== SQLs above this line already on DEV ========================================================================================================

# place here only sql queries, that were executed on prod server !!!