Add SQL validation for Feedback rating
This commit is contained in:
parent
66c5f080cc
commit
fc0c54365f
2 changed files with 7 additions and 2 deletions
|
@ -0,0 +1,5 @@
|
||||||
|
class MakeFeedbacksRatingNotNull < ActiveRecord::Migration[5.2]
|
||||||
|
def change
|
||||||
|
change_column_null :feedbacks, :rating, false
|
||||||
|
end
|
||||||
|
end
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# 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
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
@ -323,7 +323,7 @@ ActiveRecord::Schema.define(version: 2018_08_27_102828) do
|
||||||
t.integer "mark"
|
t.integer "mark"
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_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"
|
t.index ["user_id"], name: "index_feedbacks_on_user_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue