mirror of
				https://github.com/fspc/bike-database.git
				synced 2025-10-30 16:25:36 -04:00 
			
		
		
		
	lk | renames columns on agencies table
This commit is contained in:
		
							parent
							
								
									692f12d47d
								
							
						
					
					
						commit
						7cd1b7a7a4
					
				| @ -45,13 +45,13 @@ class AgenciesController < ApplicationController | ||||
| 
 | ||||
|     def agency_params | ||||
|       params.require(:agency).permit( | ||||
|         :agency_name, | ||||
|         :name, | ||||
|         :contact_name, | ||||
|         :street_address, | ||||
|         :city, | ||||
|         :state, | ||||
|         :postal_code, | ||||
|         :phone_number, | ||||
|         :email)  | ||||
|         :phone, | ||||
|         :email) | ||||
|     end | ||||
| end | ||||
|  | ||||
| @ -1,12 +1,12 @@ | ||||
| - disabled ||= false  | ||||
| - disabled ||= false | ||||
| .form-horizontal | ||||
|   .form-group | ||||
|     = f.label "Name of Agency:", class: "col-sm-2 control-label"  | ||||
|     = f.label "Name of Agency:", class: "col-sm-2 control-label" | ||||
|     .col-sm-10 | ||||
|       = f.text_field :agency_name, class: "form-control", disabled: disabled | ||||
|       = f.text_field :name, class: "form-control", disabled: disabled | ||||
| 
 | ||||
|   .form-group | ||||
|     = f.label "Contact Name:", class: "col-sm-2 control-label"  | ||||
|     = f.label "Contact Name:", class: "col-sm-2 control-label" | ||||
|     .col-sm-10 | ||||
|       = f.text_field :contact_name, class: "form-control", disabled: disabled | ||||
| 
 | ||||
| @ -14,7 +14,7 @@ | ||||
|     = f.label "Street Address:", class: "col-sm-2 control-label" | ||||
|     .col-sm-10 | ||||
|       = f.text_field :street_address, class: "form-control", disabled: disabled | ||||
|   | ||||
| 
 | ||||
|   .form-group | ||||
|     = f.label "City:", class: "col-sm-2 control-label" | ||||
|     .col-sm-10 | ||||
| @ -24,16 +24,16 @@ | ||||
|     = f.label "State:", class: "col-sm-2 control-label" | ||||
|     .col-sm-10 | ||||
|       = f.text_field :state, class: "form-control", disabled: disabled | ||||
|   | ||||
| 
 | ||||
|   .form-group | ||||
|     = f.label "Postal Code:", class: "col-sm-2 control-label" | ||||
|     .col-sm-10 | ||||
|       = f.text_field :postal_code, class: "form-control", disabled: disabled | ||||
|    | ||||
| 
 | ||||
|   .form-group | ||||
|     = f.label "Phone Number", class: "col-sm-2 control-label" | ||||
|     .col-sm-10 | ||||
|       = f.text_field :phone_number, class: "form-control", disabled: disabled | ||||
|       = f.text_field :phone, class: "form-control", disabled: disabled | ||||
| 
 | ||||
|   .form-group | ||||
|     = f.label "email", class: "col-sm-2 control-label" | ||||
|  | ||||
| @ -1,11 +1,11 @@ | ||||
| = form_for @agency, html: {class: 'form-horizontal'} do |f| | ||||
|   - if @agency.errors.any?  | ||||
|   - if @agency.errors.any? | ||||
|     #error_explanation | ||||
|       %h2= pluralize(@agency.errors.count, "error") + " prohibited this agency from being saved:" | ||||
|       %ul | ||||
|         - @agency.errors.full_messages.each do |msg| | ||||
|           %li= msg  | ||||
|   = render 'fields', f: f  | ||||
|           %li= msg | ||||
|   = render 'fields', f: f | ||||
|   .row | ||||
|     .actions.col-sm-offset-2 | ||||
|       = f.submit class: "btn btn-default" | ||||
|  | ||||
| @ -1,6 +1,6 @@ | ||||
| .container | ||||
|   %h1 Edit Agency  | ||||
|   = render 'form'  | ||||
|   %h1 Edit Agency | ||||
|   = render 'form' | ||||
|   = link_to 'Show', @agency | ||||
|   | | ||||
|   = link_to 'Back', agencies_path | ||||
|  | ||||
| @ -11,10 +11,10 @@ | ||||
|     %tbody | ||||
|       - @agencies.each do |agency| | ||||
|         %tr | ||||
|           %td= agency.agency_name | ||||
|           %td= agency.name | ||||
|           %td= link_to 'Show', agency | ||||
|           %td= link_to 'Edit', edit_agency_path(agency) | ||||
|           %td= link_to 'Destroy', agency, method: :delete, data: { confirm: 'Are you sure?' } | ||||
|    | ||||
| 
 | ||||
|   %br | ||||
|   = link_to ' + New Agency', new_agency_path, class: "btn btn-default" | ||||
|  | ||||
| @ -0,0 +1,6 @@ | ||||
| class ChangeAgencyPhoneNumberToAgencyPhone < ActiveRecord::Migration | ||||
|   def change | ||||
|     rename_column :agencies, :phone_number, :phone | ||||
|     rename_column :agencies, :agency_name, :name | ||||
|   end | ||||
| end | ||||
| @ -11,19 +11,19 @@ | ||||
| # | ||||
| # It's strongly recommended that you check this file into your version control system. | ||||
| 
 | ||||
| ActiveRecord::Schema.define(version: 20160717165815) do | ||||
| ActiveRecord::Schema.define(version: 20160724130507) do | ||||
| 
 | ||||
|   # These are extensions that must be enabled in order to support this database | ||||
|   enable_extension "plpgsql" | ||||
| 
 | ||||
|   create_table "agencies", force: :cascade do |t| | ||||
|     t.string "agency_name" | ||||
|     t.string "name" | ||||
|     t.string "contact_name" | ||||
|     t.string "street_address" | ||||
|     t.string "city" | ||||
|     t.string "state" | ||||
|     t.string "postal_code" | ||||
|     t.string "phone_number" | ||||
|     t.string "phone" | ||||
|     t.string "email" | ||||
|   end | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user