summaryrefslogtreecommitdiff
path: root/bucky2/schema/svn.sql
diff options
context:
space:
mode:
Diffstat (limited to 'bucky2/schema/svn.sql')
-rw-r--r--bucky2/schema/svn.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/bucky2/schema/svn.sql b/bucky2/schema/svn.sql
new file mode 100644
index 0000000..1459460
--- /dev/null
+++ b/bucky2/schema/svn.sql
@@ -0,0 +1,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;
+