您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Example_01_Create_Example_Table.asp 337B

8 个月前
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.