projects
/
dbsrgits/DBIx-Class-Historic.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
Nuked UUIDColumns.pm~
[dbsrgits/DBIx-Class-Historic.git]
/
lib
/
DBIx
/
Class
/
UUIDMaker.pm
Commit
Line
Data
947acfd9
1
package DBIx::Class::UUIDMaker;
2
3
sub new {
4
return bless {}, shift;
5
};
6
7
sub as_string {
8
return undef;
9
};
10
11
1;