add scaffold & bike form

This commit is contained in:
loos
2014-01-18 15:27:14 -06:00
parent b843e4024e
commit 71d2433334
29 changed files with 546 additions and 178 deletions
BIN
View File
Binary file not shown.
@@ -13,7 +13,6 @@ class CreateBikeTable < ActiveRecord::Migration
t.text :notes
t.text :tag_info
t.string :repaired_by
t.string :repaired_for
t.string :completion_date
t.string :price
end
@@ -0,0 +1,6 @@
class CreateBikes < ActiveRecord::Migration
def change
add_column(:bikes, :created_at, :datetime)
add_column(:bikes, :updated_at, :datetime)
end
end
+14 -123
View File
@@ -11,137 +11,28 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140118202104) do
ActiveRecord::Schema.define(version: 20140118205930) 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.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.string "address"
t.string "city"
t.string "zip"
t.integer "coordinator_id"
t.text "tag_info"
t.string "repaired_by"
t.string "completion_date"
t.string "price"
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