mirror of
https://github.com/fspc/BikeShed-1.git
synced 2026-09-16 08:31:36 -04:00
Fixing search form for bikes updated to netzke 8.4
Updated Netzke 8.4, better search styling, case insensitive search, can search associations Fixed mistake where bikes.condition_id was a string… durrrrrr needs to be integer
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class BikeConditionIdToInt < ActiveRecord::Migration
|
||||
def up
|
||||
#for Postgres
|
||||
connection.execute(%q{
|
||||
alter table bikes
|
||||
alter column bike_condition_id
|
||||
type integer using cast(bike_condition_id as integer)
|
||||
})
|
||||
end
|
||||
|
||||
def down
|
||||
#you really don't want to go back
|
||||
change_column :bikes, :bike_condition_id, :string
|
||||
end
|
||||
end
|
||||
+2
-2
@@ -11,7 +11,7 @@
|
||||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20130629152047) do
|
||||
ActiveRecord::Schema.define(:version => 20130816015219) do
|
||||
|
||||
create_table "bike_actions", :force => true do |t|
|
||||
t.string "action", :limit => 128, :null => false
|
||||
@@ -56,7 +56,7 @@ ActiveRecord::Schema.define(:version => 20130629152047) do
|
||||
t.float "top_tube_length"
|
||||
t.integer "wheel_size"
|
||||
t.float "value"
|
||||
t.string "bike_condition_id", :null => false
|
||||
t.integer "bike_condition_id", :null => false
|
||||
t.integer "bike_status_id", :null => false
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
|
||||
Reference in New Issue
Block a user