repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing an issue with output parameters that are of type IntPtr
[castle.git]
/
Experiments
/
Generator
/
Generators
/
Migration
/
Templates
/
Migration.cs
blob
6f6ab28357a43768d59b8f151d483a2d5a02b5b7
1
using
System
;
2
using
Migrator
;
3
4
namespace
<%=
Namespace
%>
5
{
6
/// <summary>
7
/// <%= HumanName %> to the database
8
/// </summary>
9
[
Migration
(<%=
Version
%>)]
10
public class
<%=
ClassName
%> :
Migration
11
{
12
public override void
Up
()
13
{
14
15
}
16
17
public override void
Down
()
18
{
19
20
}
21
22
}
23
}