From c31f347edca6bc4981cb9fd8aa0f84b267220554 Mon Sep 17 00:00:00 2001 From: oliver Date: Fri, 25 Dec 2015 16:17:36 +0100 Subject: [PATCH] add database table for Stationtypes --- db/create.sql | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/db/create.sql b/db/create.sql index a1fe59a8..c9d20739 100644 --- a/db/create.sql +++ b/db/create.sql @@ -1915,6 +1915,24 @@ CREATE TABLE `seminaryuploads` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `stationtypes` +-- + +DROP TABLE IF EXISTS `stationtypes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `stationtypes` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `title` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, + `url` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, + `classname` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `title` (`title`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `userroles` --