hii I am developing an application using ror in that i had created a feedback form using radiobuttton but the entry of the form is not submitted in the database after clicking the submit button although the id will b generated my migration fyl will look like this
class CreateFeeds < ActiveRecord::Migration def self.up create_table :feeds do |t| t.column :name, :string t.column :email, :string t.column :phone, :integer t.column :ovrall_food_qu, :string t.column :packaging, :string t.column :temp, :string t.column :freshness, :string t.column :item, :string t.column :itemdislike, :string t.column :descrp, :string t.column :td, :string t.column :wps, :string t.column :shc, :string t.column :suggestions, :string t.column :messages, :text t.timestamps end end
def self.down drop_table :feeds end end