Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
move to correct sql file
Browse files Browse the repository at this point in the history
  • Loading branch information
philhug committed Mar 18, 2018
1 parent b124394 commit b17e6b0
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 47 deletions.
47 changes: 47 additions & 0 deletions schema/ofm/languages.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
--
-- Table structure for table `S1L`
--

CREATE TABLE `S1L` (
`PK` int(11) NOT NULL AUTO_INCREMENT,
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(100) NOT NULL,
PRIMARY KEY (`PK`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Table structure for table `S2L`
--

CREATE TABLE `S2L` (
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(200) NOT NULL,
PRIMARY KEY (`RefID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Table structure for table `S3L`
--

CREATE TABLE `S3L` (
`PK` int(11) NOT NULL AUTO_INCREMENT,
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(200) NOT NULL,
PRIMARY KEY (`PK`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

--
-- Table structure for table `S5L`
--

CREATE TABLE `S5L` (
`PK` int(11) NOT NULL AUTO_INCREMENT,
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(100) NOT NULL,
PRIMARY KEY (`PK`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

--
-- Table structure for table `G1T`
--
Expand Down
47 changes: 0 additions & 47 deletions schema/ofm/services.sql
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
--
-- Table structure for table `S1L`
--

CREATE TABLE `S1L` (
`PK` int(11) NOT NULL AUTO_INCREMENT,
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(100) NOT NULL,
PRIMARY KEY (`PK`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Table structure for table `S1T`
--
Expand Down Expand Up @@ -135,17 +123,6 @@ CREATE TABLE `S2A7` (
KEY `index1` (`ServiceID`,`ServicePropertiesTypeID`,`ammnt_FirId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Table structure for table `S2L`
--

CREATE TABLE `S2L` (
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(200) NOT NULL,
PRIMARY KEY (`RefID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Table structure for table `S2T`
--
Expand Down Expand Up @@ -306,18 +283,6 @@ CREATE TABLE `S3A7` (
KEY `index4` (`ServiceEntityID`,`ParentServiceId`)
) ENGINE=InnoDB AUTO_INCREMENT=4884 DEFAULT CHARSET=utf8;

--
-- Table structure for table `S3L`
--

CREATE TABLE `S3L` (
`PK` int(11) NOT NULL AUTO_INCREMENT,
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(200) NOT NULL,
PRIMARY KEY (`PK`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

--
-- Table structure for table `S3T`
--
Expand Down Expand Up @@ -357,18 +322,6 @@ CREATE TABLE `S4` (
KEY `index6` (`ServiceEntityID`,`ParentServiceID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Table structure for table `S5L`
--

CREATE TABLE `S5L` (
`PK` int(11) NOT NULL AUTO_INCREMENT,
`RefID` int(11) NOT NULL,
`LanguageID` int(11) NOT NULL,
`Translation` varchar(100) NOT NULL,
PRIMARY KEY (`PK`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

--
-- Table structure for table `S5T`
--
Expand Down

0 comments on commit b17e6b0

Please sign in to comment.