~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to src/core/SQL/SQLite/15/setup_140_identity_nick.sql

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-02-17 12:49:50 UTC
  • mto: This revision was merged to the branch mainline in revision 59.
  • Revision ID: james.westby@ubuntu.com-20100217124950-v9hajw5d2xa6fszn
Tags: upstream-0.6~beta1
ImportĀ upstreamĀ versionĀ 0.6~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE identity_nick (
2
 
       nickid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
3
 
       identityid INTEGER NOT NULL,
4
 
       nick TEXT NOT NULL,
5
 
       UNIQUE (identityid, nick)
6
 
)