Przeglądaj źródła

Rename feeds_layers table to subscriptions

master
Adrian Short 11 lat temu
rodzic
commit
5348c8fa7d
1 zmienionych plików z 4 dodań i 3 usunięć
  1. +4
    -3
      app/models/post.rb

+ 4
- 3
app/models/post.rb Wyświetl plik

@@ -23,6 +23,7 @@ class Post < ActiveRecord::Base
p.lat,
p.lon,
p.published,
p.feed_id,
f.title as feed_title,
( #{EARTH_RADIUS_METRES}
* acos( cos( radians('#{lat}') )
@@ -42,15 +43,15 @@ class Post < ActiveRecord::Base
( -- Subquery returns a list of post_ids for posts on this layer
SELECT p.id

FROM feeds_layers fl
FROM subscriptions s
INNER JOIN feeds f
ON fl.feed_id = f.id
ON s.feed_id = f.id

INNER JOIN posts p
ON p.feed_id = f.id

WHERE fl.layer_id = #{layer_id}
WHERE s.layer_id = #{layer_id}
)
AND


Ładowanie…
Anuluj
Zapisz