Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Example_01_Create_Example_Table.asp 337B

8 månader sedan
123456789101112131415
  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.