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.

16 lines
337B

  1. <%
  2. Class Example_01_Create_Example_Table
  3. Public Migration
  4. Public Sub Up
  5. Migration.Do "create table Example_Table (id int not null, name varchar(100) not null)"
  6. End Sub
  7. Public Sub Down
  8. Migration.Do "drop table Example_Table"
  9. End Sub
  10. End Class
  11. Migrations.Add "Example_01_Create_Example_Table"
  12. %>

Powered by TurnKey Linux.