Browse Source

fix bikeloader

vagrant
loos 10 years ago
parent
commit
2b8d8c9f0a
  1. 147
      db/schema.rb
  2. BIN
      lib/tasks/.bikeloader.rake.swp
  3. 3
      lib/tasks/bikeloader.rake

147
db/schema.rb

@ -0,0 +1,147 @@
# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140118202104) 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"
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 "color"
t.string "frame_size"
t.boolean "freecyclery"
t.boolean "sale"
t.string "serial_number"
t.text "notes"
t.text "tag_info"
t.string "repaired_by"
t.string "repaired_for"
t.string "completion_date"
t.string "price"
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"
end
add_index "events", ["movement_id"], name: "index_events_on_movement_id", using: :btree
create_table "movements", force: true do |t|
t.string "name"
t.string "category"
t.text "story"
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"
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.integer "movement_id"
t.boolean "small_event"
t.boolean "medium_event"
t.boolean "big_event"
end
add_index "tasks", ["movement_id"], name: "index_tasks_on_movement_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

BIN
lib/tasks/.bikeloader.rake.swp

Binary file not shown.

3
lib/tasks/bikeloader.rake

@ -3,9 +3,8 @@ task :load_recyclery_bike_db => :environmnent do
Bike.all.destroy
file = "lib/assets/recyclery_bike_log.txt"
puts "loading bike database from #{file}"
File.foreach(file).do |line|
File.foreach(file) do |line|
data = line.split("|")
Bike.create(date: data[1])
end
end

Loading…
Cancel
Save