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_18_Create_CustomOfficeCopyJob_Table.asp 778B

1234567891011121314151617181920212223
  1. <%
  2. Class Migration_18_Create_CustomOfficeCopyJob_Table
  3. Public Migration
  4. Public Sub Up
  5. Migration.Do "CREATE TABLE [CustomOfficeCopyJob] (" &_
  6. "[ID] COUNTER," &_
  7. "[Jcode] VARCHAR(15)," &_
  8. "[Precinct] VARCHAR(20)," &_
  9. "[StartingBallotNumber] LONG," &_
  10. "[Amount] LONG," &_
  11. "[Status] VARCHAR(100)," &_
  12. "[Donedate] DATETIME" &_
  13. ");"
  14. Migration.Do "CREATE UNIQUE INDEX [ID] ON [CustomOfficeCopyJob]( [ID] ) WITH PRIMARY;"
  15. End Sub
  16. Public Sub Down
  17. Migration.Do "DROP TABLE [CustomOfficeCopyJob]"
  18. End Sub
  19. End Class
  20. Migrations.Add "Migration_18_Create_CustomOfficeCopyJob_Table"
  21. %>

Powered by TurnKey Linux.