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.

Migration_04_Create_Kit_Table.asp 513B

8 months ago
12345678910111213141516171819
  1. <%
  2. Class Migration_04_Create_Kit_Table
  3. Public Migration
  4. Public Sub Up
  5. Migration.Do "CREATE TABLE [Kit] (" &_
  6. "[ID] COUNTER," &_
  7. "[JobNumber] VARCHAR(255)," &_
  8. "[Jcode] VARCHAR(255)" &_
  9. ");"
  10. Migration.Do "CREATE UNIQUE INDEX [ID] ON [Kit]( [ID] ) WITH PRIMARY;"
  11. End Sub
  12. Public Sub Down
  13. Migration.Do "DROP TABLE [Kit]"
  14. End Sub
  15. End Class
  16. Migrations.Add "Migration_04_Create_Kit_Table"
  17. %>

Powered by TurnKey Linux.