forked from insoshi/insoshi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into master_edge
- Loading branch information
Showing
28 changed files
with
134 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: activities | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,31 @@ | ||
# == Schema Information | ||
# Schema version: 28 | ||
# | ||
# Table name: people | ||
# | ||
# id :integer(11) not null, primary key | ||
# email :string(255) | ||
# name :string(255) | ||
# remember_token :string(255) | ||
# crypted_password :string(255) | ||
# description :text | ||
# remember_token_expires_at :datetime | ||
# last_contacted_at :datetime | ||
# last_logged_in_at :datetime | ||
# forum_posts_count :integer(11) default(0), not null | ||
# blog_post_comments_count :integer(11) default(0), not null | ||
# wall_comments_count :integer(11) default(0), not null | ||
# created_at :datetime | ||
# updated_at :datetime | ||
# admin :boolean(1) not null | ||
# deactivated :boolean(1) not null | ||
# connection_notifications :boolean(1) default(TRUE) | ||
# message_notifications :boolean(1) default(TRUE) | ||
# wall_comment_notifications :boolean(1) default(TRUE) | ||
# blog_comment_notifications :boolean(1) default(TRUE) | ||
# email_verified :boolean(1) | ||
# | ||
|
||
class AllPerson < Person | ||
is_indexed :fields => [ 'name', 'description' ] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: blogs | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: posts | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: comments | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: connections | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# == Schema Information | ||
# Schema version: 28 | ||
# | ||
# Table name: conversations | ||
# | ||
# id :integer(11) not null, primary key | ||
# | ||
|
||
class Conversation < ActiveRecord::Base | ||
has_many :messages, :order => :created_at | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: email_verifications | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: feeds | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: forums | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: posts | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: page_views | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: people | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: photos | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: posts | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: preferences | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# == Schema Information | ||
# Schema version: 26 | ||
# Schema version: 28 | ||
# | ||
# Table name: topics | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.