~george-edison55/jsstudio/addons_site

« back to all changes in this revision

Viewing changes to tables.sql

  • Committer: Nathan Osman
  • Date: 2011-08-22 04:33:05 UTC
  • Revision ID: admin@quickmediasolutions.com-20110822043305-kk083pea9bjjq5ad
Added ability to download addons.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
CREATE TABLE IF NOT EXISTS `addons` (
4
4
  `id` int(11) NOT NULL AUTO_INCREMENT,
5
5
  `title` varchar(255) NOT NULL,
6
 
  `description` varchar(255) NOT NULL,
 
6
  `description` text NOT NULL,
7
7
  `user_id` int(11) NOT NULL,
8
8
  PRIMARY KEY (`id`)
9
9
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;