Skip to content
Snippets Groups Projects
Commit 890c0383 authored by Marcela Ribeiro de Oliveira's avatar Marcela Ribeiro de Oliveira
Browse files

Add new model for suggestion form

parent a02a5004
No related branches found
No related tags found
No related merge requests found
# == Schema Information
#
# Table name: suggestions
#
# id :integer not null, primary key
# name :string
# link :string
# description :text
# status :integer
#
class Suggestion < ApplicationRecord
enum status: { new: 0, accepted: 1, rejected: 2, loaded: 3 }
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment