~ubuntu-branches/ubuntu/karmic/quassel/karmic-backports

« back to all changes in this revision

Viewing changes to src/core/SQL/SQLite/14/setup_130_identity.sql

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2009-07-19 23:40:27 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20090719234027-wxq9eo8itqajm5hx
Tags: 0.5.0~git090719-0ubuntu1
* New upstream git snapshot
  - Add usr/share/kde4/apps/quassel/scripts/ to debian/quassel-data.install
  - Add new icons to debian/quassel-data.install (ship them all for now)
* Add kubuntu_01_default_network_channel.patch back

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE identity (
2
 
       identityid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
3
 
       userid INTEGER NOT NULL,
4
 
       identityname TEXT NOT NULL,
5
 
       realname TEXT NOT NULL,
6
 
       awaynick TEXT,
7
 
       awaynickenabled INTEGER NOT NULL DEFAULT 0, -- BOOL
8
 
       awayreason TEXT,
9
 
       awayreasonenabled INTEGER NOT NULL DEFAULT 0, -- BOOL
10
 
       autoawayenabled INTEGER NOT NULL DEFAULT 0, -- BOOL
11
 
       autoawaytime INTEGER NOT NULL,
12
 
       autoawayreason TEXT,
13
 
       autoawayreasonenabled INTEGER NOT NULL DEFAULT 0, -- BOOL
14
 
       detachawayenabled INTEGER NOT NULL DEFAULT 0, -- BOOL
15
 
       detachawayreason TEXT,
16
 
       detachawayreasonenabled INTEGER NOT NULL DEFAULT 0, -- BOOL       
17
 
       ident TEXT,
18
 
       kickreason TEXT,
19
 
       partreason TEXT,
20
 
       quitreason TEXT,
21
 
       sslcert BLOB,
22
 
       sslkey BLOB,
23
 
       UNIQUE (userid, identityname)
24
 
)