Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 wiersze
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.