summaryrefslogtreecommitdiff
path: root/tools/sql-migrate-20110823-2.sql
blob: 8282f29a179dc1b07fc4ecf2cdd136ce232882f5 (plain)
1
2
3
4
5
6
7
create table csrf_tokens (
  name    text REFERENCES users(name) ON DELETE CASCADE,
  token   text,
  end_date timestamp without time zone,
  PRIMARY KEY(name)
);