~ubuntu-branches/ubuntu/karmic/gears/karmic

« back to all changes in this revision

Viewing changes to gears/sdk/samples/gearpad/db.sql

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Lesicnik
  • Date: 2009-04-30 19:15:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090430191525-0790sb5wzg8ou0xb
Tags: upstream-0.5.21.0~svn3334+dfsg
ImportĀ upstreamĀ versionĀ 0.5.21.0~svn3334+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright 2007, Google Inc.
 
3
 
 
4
Redistribution and use in source and binary forms, with or without 
 
5
modification, are permitted provided that the following conditions are met:
 
6
 
 
7
 1. Redistributions of source code must retain the above copyright notice, 
 
8
    this list of conditions and the following disclaimer.
 
9
 2. Redistributions in binary form must reproduce the above copyright notice,
 
10
    this list of conditions and the following disclaimer in the documentation
 
11
    and/or other materials provided with the distribution.
 
12
 3. Neither the name of Google Inc. nor the names of its contributors may be
 
13
    used to endorse or promote products derived from this software without
 
14
    specific prior written permission.
 
15
 
 
16
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 
17
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
 
18
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
 
19
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
 
20
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
21
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 
22
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
23
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
 
24
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
 
25
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
26
*/
 
27
 
 
28
/**
 
29
 * Schema for Gearpad. After creating a blank database called 'gearpad',
 
30
 * run with something like:
 
31
 *
 
32
 * mysql -u myuser -p gearpad < db.sql
 
33
 *
 
34
 * WATCH OUT! THIS IS A VERY COMPLEX SCHEMA!!!
 
35
 */
 
36
 
 
37
DROP TABLE IF EXISTS `user`;
 
38
CREATE TABLE `user` (
 
39
  `id` int(11) NOT NULL auto_increment,
 
40
  `email` varchar(255) NOT NULL,
 
41
  `password` varchar(255) NOT NULL,
 
42
  `content` text NOT NULL,
 
43
  `version` int(11) NOT NULL,
 
44
  `updated` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
 
45
  `last_client_id` int(11) NOT NULL default 0,
 
46
  `next_client_id` int(11) NOT NULL default 1,
 
47
  PRIMARY KEY  (`id`),
 
48
  UNIQUE KEY `email` (`email`)
 
49
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
50