mirror of
https://github.com/fspc/bike-database.git
synced 2025-02-23 01:23:24 -05:00
lk | removes unused client tables and makes date sold a datetime to be consistent
This commit is contained in:
parent
9c53f81672
commit
f6a51e8a33
@ -0,0 +1,7 @@
|
|||||||
|
class RemoveUnusedColumnsFromClients < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
remove_column :clients, :number_of_calls
|
||||||
|
remove_column :clients, :application_date_bkp
|
||||||
|
remove_column :clients, :pickup_date_bkp
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,9 @@
|
|||||||
|
class ChangeBikeDateSoldColumnToDateTime < ActiveRecord::Migration
|
||||||
|
def up
|
||||||
|
change_column :bikes, :date_sold, :datetime
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
change_column :bikes, :date_sold, :date
|
||||||
|
end
|
||||||
|
end
|
@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 20160731014517) do
|
ActiveRecord::Schema.define(version: 20160731020658) do
|
||||||
|
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
@ -43,7 +43,7 @@ ActiveRecord::Schema.define(version: 20160731014517) do
|
|||||||
t.integer "log_number"
|
t.integer "log_number"
|
||||||
t.text "purpose"
|
t.text "purpose"
|
||||||
t.text "mechanic"
|
t.text "mechanic"
|
||||||
t.date "date_sold"
|
t.datetime "date_sold"
|
||||||
t.integer "bike_index_id"
|
t.integer "bike_index_id"
|
||||||
t.datetime "fixed_at"
|
t.datetime "fixed_at"
|
||||||
end
|
end
|
||||||
@ -51,7 +51,6 @@ ActiveRecord::Schema.define(version: 20160731014517) do
|
|||||||
create_table "clients", force: :cascade do |t|
|
create_table "clients", force: :cascade do |t|
|
||||||
t.string "first_name"
|
t.string "first_name"
|
||||||
t.string "last_name"
|
t.string "last_name"
|
||||||
t.date "application_date_bkp"
|
|
||||||
t.string "gender"
|
t.string "gender"
|
||||||
t.integer "age"
|
t.integer "age"
|
||||||
t.boolean "helmet"
|
t.boolean "helmet"
|
||||||
@ -64,9 +63,7 @@ ActiveRecord::Schema.define(version: 20160731014517) do
|
|||||||
t.integer "agency_id"
|
t.integer "agency_id"
|
||||||
t.text "notes"
|
t.text "notes"
|
||||||
t.boolean "bike_fixed"
|
t.boolean "bike_fixed"
|
||||||
t.integer "number_of_calls"
|
|
||||||
t.boolean "application_voided"
|
t.boolean "application_voided"
|
||||||
t.date "pickup_date_bkp"
|
|
||||||
t.string "volunteer_at_pickup"
|
t.string "volunteer_at_pickup"
|
||||||
t.float "weight"
|
t.float "weight"
|
||||||
t.float "height"
|
t.float "height"
|
||||||
|
4
notes.md
4
notes.md
@ -13,10 +13,6 @@
|
|||||||
- convert to bootstrap-less
|
- convert to bootstrap-less
|
||||||
- integrate with autocomplete to get manufacturers & models
|
- integrate with autocomplete to get manufacturers & models
|
||||||
- enable posting to bike index when a bike is created
|
- enable posting to bike index when a bike is created
|
||||||
- remove clients#number_of_calls
|
|
||||||
- remove clients#application_date_bkp
|
|
||||||
- remove clients#pickup_Date_bkp
|
|
||||||
- bike date_sold column should be datetime
|
|
||||||
- add tests to ensure that pages render
|
- add tests to ensure that pages render
|
||||||
|
|
||||||
# Bugs
|
# Bugs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user