/[projects]/smsdaemon/webinterface/sms.sql
ViewVC logotype

Contents of /smsdaemon/webinterface/sms.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 191 - (show annotations) (download)
Wed Dec 17 18:23:03 2008 UTC (15 years, 5 months ago) by torben
File size: 1820 byte(s)
Added webinterface for trigger the smsdaemon remotely

1 -- MySQL dump 10.11
2 --
3 -- Host: localhost Database: sms
4 -- ------------------------------------------------------
5 -- Server version 5.0.67-0ubuntu6
6
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40101 SET NAMES utf8 */;
11 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12 /*!40103 SET TIME_ZONE='+00:00' */;
13 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18 --
19 -- Table structure for table `smscount`
20 --
21
22 DROP TABLE IF EXISTS `smscount`;
23 SET @saved_cs_client = @@character_set_client;
24 SET character_set_client = utf8;
25 CREATE TABLE `smscount` (
26 `id` int(11) NOT NULL auto_increment,
27 `owner` text NOT NULL,
28 `smscount` int(11) NOT NULL,
29 `totalcount` int(11) NOT NULL,
30 `code` varchar(50) NOT NULL,
31 `lastsend` datetime NOT NULL,
32 `lastreset` datetime NOT NULL,
33 `enabled` tinyint(1) NOT NULL,
34 PRIMARY KEY (`id`),
35 UNIQUE KEY `code` (`code`)
36 ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
37 SET character_set_client = @saved_cs_client;
38 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
39
40 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
41 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
42 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
43 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
44 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
45 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
46 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
47
48 -- Dump completed on 2008-12-17 18:21:53

  ViewVC Help
Powered by ViewVC 1.1.20