Improvements and typos
This commit is contained in:
parent
3bdbc74b0e
commit
5b27274fa7
13 changed files with 78 additions and 75 deletions
|
@ -73,8 +73,8 @@ INSERT INTO `as_config` (`name`, `value`, `title`, `description`, `option`, `cat
|
|||
-- Tabellenstruktur für Tabelle `as_config_categorys`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `as_config_categorys`;
|
||||
CREATE TABLE IF NOT EXISTS `as_config_categorys` (
|
||||
DROP TABLE IF EXISTS `as_config_categories`;
|
||||
CREATE TABLE IF NOT EXISTS `as_config_categories` (
|
||||
`cid` int(11) NOT NULL auto_increment,
|
||||
`categoryname` varchar(200) NOT NULL,
|
||||
PRIMARY KEY (`cid`)
|
||||
|
@ -84,7 +84,7 @@ CREATE TABLE IF NOT EXISTS `as_config_categorys` (
|
|||
-- Daten für Tabelle `as_config_categorys`
|
||||
--
|
||||
|
||||
INSERT INTO `as_config_categorys` (`cid`, `categoryname`) VALUES
|
||||
INSERT INTO `as_config_categories` (`cid`, `categoryname`) VALUES
|
||||
(1, 'Allgemein'),
|
||||
(2, 'Wartungsmodus'),
|
||||
(3, 'Registrierung'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue