标签:primary title highlight set view div new time int
ID: 新闻的唯一标示 title:新闻的标题 content: 新闻的内容 created_at: 新闻添加的时间
types: 新闻的类型 image: 新闻的缩略图 author: 作者 view_count: 浏览量 is_valid: 删除标记 物理删除 逻辑删除
CREATE TABLE `news`( `id` INT NOT NULL AUTO_INCREMENT, `title` VARCHAR(200) NOT NULL, `content` VARCHAR(2000) NOT NULL, `types` VARCHAR(10) NOT NULL, `image` VARCHAR(300) NULL, `author` VARCHAR(20) NULL, `view_count`INT DEFAULT 0, `created_at` DATETIME NULL, `is_valid` SMALLINT DEFAULT 1, PRIMARY KEY(`id`) )DEFAULT CHARSET =‘UTF8‘
标签:primary title highlight set view div new time int
原文地址:https://www.cnblogs.com/zhujing666/p/12308299.html