forked from woondroo/curl_multi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.sql
More file actions
22 lines (19 loc) · 766 Bytes
/
content.sql
File metadata and controls
22 lines (19 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--
-- 数据库: `www_curlmulti`
--
-- --------------------------------------------------------
--
-- 表的结构 `content`
--
CREATE TABLE IF NOT EXISTS `content` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`meta_title` varchar(500) CHARACTER SET latin1 NOT NULL,
`meta_keywords` text CHARACTER SET latin1 NOT NULL,
`meta_description` text CHARACTER SET latin1 NOT NULL,
`product_name` varchar(500) CHARACTER SET latin1 NOT NULL,
`product_image` varchar(500) CHARACTER SET latin1 NOT NULL,
`product_price` varchar(500) CHARACTER SET latin1 NOT NULL,
`product_description` text CHARACTER SET latin1 NOT NULL,
`product_url` varchar(500) CHARACTER SET latin1 NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;