Created
October 11, 2008 00:29
-
-
Save schacon/16191 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE `git_files` ( | |
| `id` int(11) NOT NULL auto_increment, | |
| `path` text, | |
| `sha_value` char(40) default NULL, | |
| `repo` char(255) default NULL, | |
| PRIMARY KEY (`id`), | |
| KEY `lookup` (`repo`(15),`path`(20),`sha_value`(20)) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment