Rename Delivery.delivered_on to date
This aligns it with column names of StockTaking and us to use inheritance in a next step to share common code between the entities.
This commit is contained in:
parent
7b2072251e
commit
a5582e9542
18 changed files with 35 additions and 30 deletions
5
db/migrate/20181204060000_change_delivered_on_to_date.rb
Normal file
5
db/migrate/20181204060000_change_delivered_on_to_date.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class ChangeDeliveredOnToDate < ActiveRecord::Migration
|
||||
def change
|
||||
rename_column :deliveries, :delivered_on, :date
|
||||
end
|
||||
end
|
||||
|
|
@ -91,11 +91,11 @@ ActiveRecord::Schema.define(version: 20181205010000) do
|
|||
add_index "bank_transactions", ["financial_link_id"], name: "index_bank_transactions_on_financial_link_id", using: :btree
|
||||
|
||||
create_table "deliveries", force: :cascade do |t|
|
||||
t.integer "supplier_id", limit: 4
|
||||
t.date "delivered_on"
|
||||
t.integer "supplier_id", limit: 4
|
||||
t.date "date"
|
||||
t.datetime "created_at"
|
||||
t.text "note", limit: 65535
|
||||
t.integer "invoice_id", limit: 4
|
||||
t.text "note", limit: 65535
|
||||
t.integer "invoice_id", limit: 4
|
||||
end
|
||||
|
||||
add_index "deliveries", ["supplier_id"], name: "index_deliveries_on_supplier_id", using: :btree
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue