~ubuntu-branches/debian/experimental/quassel/experimental

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Mueller
  • Date: 2009-10-05 23:13:06 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091005231306-ngiajv5r0gbxjfoq
Tags: 0.5.0~rc2-1
* New upstream release (rc2)
* Make puiparts happy (closes: #538182)
* manageusers.py added (closes: #549296)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE quasseluser (
2
 
       userid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
3
 
       username TEXT UNIQUE NOT NULL,
4
 
       password TEXT NOT NULL
5
 
)
6
 
 
7