Skip to content
Snippets Groups Projects
Commit 629e61a3 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Be specific about what table 'created_date' and 'modified_date' are in.

parent 03ae239c
No related branches found
No related tags found
No related merge requests found
......@@ -87,9 +87,9 @@ sub _columns {
my $self = shift;
my $created_date =
$self->db->dbc->from_date_to_seconds("created_date");
$self->db->dbc->from_date_to_seconds("esi.created_date");
my $modified_date =
$self->db->dbc->from_date_to_seconds("modified_date");
$self->db->dbc->from_date_to_seconds("esi.modified_date");
return (
'e.exon_id', 'e.seq_region_id', 'e.seq_region_start',
......
......@@ -104,9 +104,9 @@ sub _columns {
my ($self) = @_;
my $created_date =
$self->db()->dbc()->from_date_to_seconds("created_date");
$self->db()->dbc()->from_date_to_seconds("tsi.created_date");
my $modified_date =
$self->db()->dbc()->from_date_to_seconds("modified_date");
$self->db()->dbc()->from_date_to_seconds("tsi.modified_date");
return (
't.transcript_id', 't.seq_region_id',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment