|
Lines 1845-1859
CREATE TABLE `statistics` ( -- information related to transactions (circulation
Link Here
|
| 1845 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
1845 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
| 1846 |
|
1846 |
|
| 1847 |
-- |
1847 |
-- |
| 1848 |
-- Table structure for table `stopwords` |
|
|
| 1849 |
-- |
| 1850 |
|
| 1851 |
DROP TABLE IF EXISTS `stopwords`; |
| 1852 |
CREATE TABLE `stopwords` ( |
| 1853 |
`word` varchar(255) default NULL |
| 1854 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
| 1855 |
|
| 1856 |
-- |
| 1857 |
-- Table structure for table `subscription` |
1848 |
-- Table structure for table `subscription` |
| 1858 |
-- |
1849 |
-- |
| 1859 |
|
1850 |
|
| 1860 |
- |
|
|