houndci fixes

This commit is contained in:
Gopesh Tulsyan 2014-05-26 15:43:19 +05:30
parent c67700e0ae
commit a0aa523122
11 changed files with 39 additions and 36 deletions

View file

@ -1,11 +1,11 @@
class CreateSponsorshipRegistrations < ActiveRecord::Migration
def change
create_table :sponsorship_registrations do |t|
t.string :name
t.string :email_id
t.string :contact_no
t.float :amount_donated
t.string :method_of_donation
t.string :name
t.string :email_id
t.string :contact_no
t.float :amount_donated
t.string :method_of_donation
t.belongs_to :organization
t.belongs_to :sponsorship_level
t.belongs_to :conference

View file

@ -1,13 +1,13 @@
class CreateOrganizations < ActiveRecord::Migration
def change
create_table :organizations do |t|
t.string :title
t.string :email_id
t.text :description
t.string :photo_file_name
t.string :photo_content_type
t.integer :photo_file_size
t.datetime :photo_updated_at
t.string :title
t.string :email_id
t.text :description
t.string :photo_file_name
t.string :photo_content_type
t.integer :photo_file_size
t.datetime :photo_updated_at
t.timestamps
end
end