12345678910111213141516171819202122232425262728 |
- /*
- Navicat MySQL Data Transfer
- Source Server : localhost_3306
- Source Server Version : 50540
- Source Host : localhost:3306
- Source Database : building
- Target Server Type : MYSQL
- Target Server Version : 50540
- File Encoding : 65001
- Date: 2017-08-23 17:32:48
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for bd_sort_message
- -- ----------------------------
- DROP TABLE IF EXISTS `bd_sort_message`;
- CREATE TABLE `bd_sort_message` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `tel` varchar(32) NOT NULL,
- `code` varchar(12) NOT NULL,
- `created_at` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='短信验证表';
|