Skip to content

Commit

Permalink
Merge pull request ezsystems#30 from ezsystems/ezee-2110
Browse files Browse the repository at this point in the history
EZEE-2110: Change data format from DATETIME to INT (timestamp)
  • Loading branch information
Łukasz Serwatka committed Jun 22, 2018
2 parents c0a3887 + 0e3f9aa commit ae3f59b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Resources/sql/schema.sql
Expand Up @@ -171,8 +171,8 @@ DROP TABLE IF EXISTS `ezpage_blocks_visibility`;
CREATE TABLE `ezpage_blocks_visibility` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`block_id` INT(11) NOT NULL,
`since` DATETIME DEFAULT NULL,
`till` DATETIME DEFAULT NULL,
`since` INT(11) DEFAULT NULL,
`till` INT(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

Expand Down

0 comments on commit ae3f59b

Please sign in to comment.