You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | <%
Class Example_01_Create_Example_Table
    Public Migration
    Public Sub Up
        Migration.Do "create table Example_Table (id int not null, name varchar(100) not null)"
    End Sub
    
    Public Sub Down
        Migration.Do "drop table Example_Table"
    End Sub
End Class
Migrations.Add "Example_01_Create_Example_Table"
%>
 |