summaryrefslogtreecommitdiff
path: root/bucky2/schema/svn.sql
blob: 1459460699cf5149a2b6a7766068b49e435cde18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
USE `bucky`;

DROP TABLE IF EXISTS `svn`;
CREATE TABLE `svn` (
  `id` int(11) NOT NULL auto_increment,
  `user` varchar(255),
  `date` int(11),
  `revision` int(11),
  `comment` blob,
  PRIMARY KEY(`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;