Skip to content

Commit

Permalink
update to release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
domjos1994 committed Oct 12, 2018
1 parent 143f481 commit 0112302
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/TimelineEventRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class TimelineEventRepository extends Repository {

public function getContentElementEntries($uid) {
$query = $this->createQuery();
$query->statement("SELECT * FROM tx_timeline_domain_model_timelineevent WHERE timetable_id=$uid");
$query->statement("SELECT * FROM tx_timeline_domain_model_timelineevent WHERE timetable_id=$uid ORDER BY start_date");
$result = $query->execute();
return $result;
}
Expand Down
2 changes: 1 addition & 1 deletion ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CREATE TABLE tx_timeline_domain_model_timelineevent (
start_date int(11) DEFAULT '0' NOT NULL,
end_date int(11) DEFAULT '0',
timetable_id int(11) unsigned DEFAULT '0',
format text NOT NULL DEFAULT 'd.M.Y',
format varchar(15) NOT NULL DEFAULT 'd.M.Y',
side int(11) unsigned NOT NULL DEFAULT '0',

tstamp int(11) unsigned DEFAULT '0' NOT NULL,
Expand Down

0 comments on commit 0112302

Please sign in to comment.