Add SQL validation for Feedback rating

This commit is contained in:
gregoirenovel 2018-08-27 13:14:11 +02:00
parent 66c5f080cc
commit fc0c54365f
2 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class MakeFeedbacksRatingNotNull < ActiveRecord::Migration[5.2]
def change
change_column_null :feedbacks, :rating, false
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2018_08_27_102828) do
ActiveRecord::Schema.define(version: 2018_08_27_111328) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -323,7 +323,7 @@ ActiveRecord::Schema.define(version: 2018_08_27_102828) do
t.integer "mark"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "rating"
t.string "rating", null: false
t.index ["user_id"], name: "index_feedbacks_on_user_id"
end