Merge pull request #2465 from betagouv/finish-feedback-migration

Finish feedback migration
This commit is contained in:
gregoirenovel 2018-08-28 10:43:51 +02:00 committed by GitHub
commit 625f3696f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 3 deletions

View file

@ -6,4 +6,6 @@ class Feedback < ApplicationRecord
neutral: 'neutral',
unhappy: 'unhappy'
}
validates :rating, presence: true
end

View file

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

View file

@ -0,0 +1,5 @@
class RemoveMarkOnFeedbacks < ActiveRecord::Migration[5.2]
def change
remove_column :feedbacks, :mark
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_111451) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -320,10 +320,9 @@ ActiveRecord::Schema.define(version: 2018_08_27_102828) do
create_table "feedbacks", force: :cascade do |t|
t.bigint "user_id"
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