project_roles.sql 651 B

1234567891011121314151617181920212223242526272829
  1. -- --------------------------------------------------------
  2. --
  3. -- Table structure for table `project_roles`
  4. --
  5. -- Creation: Aug 20, 2015 at 10:03 PM
  6. --
  7. DROP TABLE IF EXISTS `project_roles`;
  8. CREATE TABLE IF NOT EXISTS `project_roles` (
  9. `id` int(10) NOT NULL,
  10. `name` varchar(50) COLLATE utf8_bin NOT NULL
  11. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
  12. --
  13. -- RELATIONS FOR TABLE `project_roles`:
  14. --
  15. --
  16. -- Indexes for table `project_roles`
  17. --
  18. ALTER TABLE `project_roles`
  19. ADD PRIMARY KEY (`id`);
  20. --
  21. -- AUTO_INCREMENT for table `project_roles`
  22. --
  23. ALTER TABLE `project_roles`
  24. MODIFY `id` int(10) NOT NULL AUTO_INCREMENT;