Lines 1723-1729
CREATE TABLE `opac_news` ( -- data from the news tool
Link Here
|
1723 |
`title` varchar(250) NOT NULL default '', -- title of the news article |
1723 |
`title` varchar(250) NOT NULL default '', -- title of the news article |
1724 |
`content` MEDIUMTEXT NOT NULL, -- the body of your news article |
1724 |
`content` MEDIUMTEXT NOT NULL, -- the body of your news article |
1725 |
`lang` varchar(50) NOT NULL default '', -- location for the article (koha is the staff client, slip is the circulation receipt and language codes are for the opac) |
1725 |
`lang` varchar(50) NOT NULL default '', -- location for the article (koha is the staff client, slip is the circulation receipt and language codes are for the opac) |
1726 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- pulibcation date and time |
1726 |
`publicationdate` date DEFAULT NULL, -- publication date |
|
|
1727 |
`updated_on` timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- last modification |
1727 |
`expirationdate` date default NULL, -- date the article is set to expire or no longer be visible |
1728 |
`expirationdate` date default NULL, -- date the article is set to expire or no longer be visible |
1728 |
`number` int(11) default NULL, -- the order in which this article appears in that specific location |
1729 |
`number` int(11) default NULL, -- the order in which this article appears in that specific location |
1729 |
`borrowernumber` int(11) default NULL, -- The user who created the news article |
1730 |
`borrowernumber` int(11) default NULL, -- The user who created the news article |
1730 |
- |
|
|