mirror of
https://github.com/fspc/bike-database.git
synced 2025-02-23 09:33:23 -05:00
fix type column name
This commit is contained in:
parent
4f87f003b2
commit
4ea02cf5b2
BIN
app/views/bikes/._form.html.erb.swp
Normal file
BIN
app/views/bikes/._form.html.erb.swp
Normal file
Binary file not shown.
@ -18,7 +18,7 @@
|
||||
<%= f.text_field :brand %>
|
||||
<br>
|
||||
<%= f.label "Type:" %>
|
||||
<%= f.text_field :type %>
|
||||
<%= f.text_field :bike_type %>
|
||||
<br>
|
||||
<%= f.label "Freecyclery?" %>
|
||||
<%= f.check_box :freecyclery %>
|
||||
|
BIN
db/migrate/.20140118202104_create_bike_table.rb.swp
Normal file
BIN
db/migrate/.20140118202104_create_bike_table.rb.swp
Normal file
Binary file not shown.
5
db/migrate/20140214152631_change_type_to_bicycle_type.rb
Normal file
5
db/migrate/20140214152631_change_type_to_bicycle_type.rb
Normal file
@ -0,0 +1,5 @@
|
||||
class ChangeTypeToBicycleType < ActiveRecord::Migration
|
||||
def change
|
||||
rename_column(:bikes, :type, :bike_type)
|
||||
end
|
||||
end
|
124
db/schema.rb
124
db/schema.rb
@ -11,16 +11,41 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140118205930) do
|
||||
ActiveRecord::Schema.define(version: 20140214152631) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
||||
create_table "assignments", force: true do |t|
|
||||
t.integer "attendee_id"
|
||||
t.integer "task_id"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
add_index "assignments", ["attendee_id", "task_id"], name: "index_assignments_on_attendee_id_and_task_id", unique: true, using: :btree
|
||||
add_index "assignments", ["attendee_id"], name: "index_assignments_on_attendee_id", using: :btree
|
||||
add_index "assignments", ["task_id"], name: "index_assignments_on_task_id", using: :btree
|
||||
|
||||
create_table "attendees", force: true do |t|
|
||||
t.string "email"
|
||||
t.integer "movement_id"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "event_id"
|
||||
t.string "name"
|
||||
t.text "notes"
|
||||
t.boolean "point_person"
|
||||
t.text "phone_number"
|
||||
end
|
||||
|
||||
add_index "attendees", ["event_id"], name: "index_attendees_on_event_id", using: :btree
|
||||
|
||||
create_table "bikes", force: true do |t|
|
||||
t.string "entry_date"
|
||||
t.string "brand"
|
||||
t.string "model"
|
||||
t.string "type"
|
||||
t.string "bike_type"
|
||||
t.string "color"
|
||||
t.string "frame_size"
|
||||
t.boolean "freecyclery"
|
||||
@ -35,4 +60,99 @@ ActiveRecord::Schema.define(version: 20140118205930) do
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "events", force: true do |t|
|
||||
t.string "name"
|
||||
t.text "notes"
|
||||
t.string "address"
|
||||
t.string "city"
|
||||
t.string "zip"
|
||||
t.integer "coordinator_id"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "movement_id"
|
||||
t.float "latitude"
|
||||
t.float "longitude"
|
||||
t.string "date"
|
||||
t.string "time"
|
||||
t.string "location_details"
|
||||
t.string "event_type"
|
||||
t.boolean "approved"
|
||||
t.integer "host_id"
|
||||
end
|
||||
|
||||
add_index "events", ["host_id"], name: "index_events_on_host_id", using: :btree
|
||||
add_index "events", ["movement_id"], name: "index_events_on_movement_id", using: :btree
|
||||
|
||||
create_table "movements", force: true do |t|
|
||||
t.string "name"
|
||||
t.text "tagline"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "image_file_name"
|
||||
t.string "image_content_type"
|
||||
t.integer "image_file_size"
|
||||
t.datetime "image_updated_at"
|
||||
t.string "video"
|
||||
t.integer "user_id"
|
||||
t.text "call_to_action"
|
||||
t.text "extended_description"
|
||||
t.boolean "published", default: false
|
||||
end
|
||||
|
||||
add_index "movements", ["user_id"], name: "index_movements_on_user_id", using: :btree
|
||||
|
||||
create_table "tasks", force: true do |t|
|
||||
t.string "description"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.boolean "small_event"
|
||||
t.boolean "medium_event"
|
||||
t.boolean "big_event"
|
||||
t.integer "event_id"
|
||||
end
|
||||
|
||||
add_index "tasks", ["event_id"], name: "index_tasks_on_event_id", using: :btree
|
||||
|
||||
create_table "users", force: true do |t|
|
||||
t.string "email", default: "", null: false
|
||||
t.string "encrypted_password", default: ""
|
||||
t.string "reset_password_token"
|
||||
t.datetime "reset_password_sent_at"
|
||||
t.datetime "remember_created_at"
|
||||
t.integer "sign_in_count", default: 0, null: false
|
||||
t.datetime "current_sign_in_at"
|
||||
t.datetime "last_sign_in_at"
|
||||
t.string "current_sign_in_ip"
|
||||
t.string "last_sign_in_ip"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "provider"
|
||||
t.string "uid"
|
||||
t.string "name"
|
||||
t.string "oauth_token"
|
||||
t.datetime "oauth_expires_at"
|
||||
t.string "invitation_token"
|
||||
t.datetime "invitation_created_at"
|
||||
t.datetime "invitation_sent_at"
|
||||
t.datetime "invitation_accepted_at"
|
||||
t.integer "invitation_limit"
|
||||
t.integer "invited_by_id"
|
||||
t.string "invited_by_type"
|
||||
t.integer "movement_id"
|
||||
end
|
||||
|
||||
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
|
||||
add_index "users", ["invitation_token"], name: "index_users_on_invitation_token", unique: true, using: :btree
|
||||
add_index "users", ["invited_by_id"], name: "index_users_on_invited_by_id", using: :btree
|
||||
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
|
||||
|
||||
create_table "zipcodes", force: true do |t|
|
||||
t.string "zip"
|
||||
t.string "city"
|
||||
t.string "state"
|
||||
t.string "state_abbreviation"
|
||||
t.float "latitude"
|
||||
t.float "longitude"
|
||||
end
|
||||
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user