Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,7 @@ Para subir o projeto
(dando o push no projeto para que seja feito o pull request) git push origin nome-da-branch

e por ultimo vá até o seu repositório no github (parte gráfica) e faça o pull request.


### Participantes do projeto
Leonardo Scoza, Elizeu Santos, Bianca Carvalho, Neno Almeida, Vagnerlandio Nunes, Rauan Felipe, Alberto Rocha, Samuel Rubens, Ricardo França, Warley Franco, Pedro Fernandes e Rodrigo.
9 changes: 9 additions & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@
t.index ["question_id"], name: "index_hashtags_questions_on_question_id"
end

create_table "likes", force: :cascade do |t|
t.integer "user_id"
t.integer "likable_id"
t.integer "likable_type"
t.boolean "kind"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

create_table "notifications", force: :cascade do |t|
t.integer "hashtag_id"
t.integer "user_id"
Expand Down