gather_program/sql/settings.sql

This commit is contained in:
zhanyun 2016-11-15 20:04:42 +08:00
parent c7e40ba030
commit 0a8afe957a
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
/*
Navicat MySQL Data Transfer
Source Server : ossean
Source Server Version : 50535
Source Host : 127.0.0.1:3306
Source Database : ossean_new
Target Server Type : MYSQL
Target Server Version : 50535
File Encoding : 65001
Date: 2016-11-15 20:04:15
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for settings
-- ----------------------------
DROP TABLE IF EXISTS `settings`;
CREATE TABLE `settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`value` text,
`updated_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_settings_on_name` (`name`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;