Browse Source

Add monthly rent column to sales logs table

pull/1111/head
Kat 4 years ago
parent
commit
437edab780
  1. 7
      db/migrate/20221221105502_add_rent_to_sales.rb
  2. 3
      db/schema.rb

7
db/migrate/20221221105502_add_rent_to_sales.rb

@ -0,0 +1,7 @@
class AddRentToSales < ActiveRecord::Migration[7.0]
def change
change_table :sales_logs, bulk: true do |t|
t.column :mrent, :decimal, precision: 10, scale: 2
end
end
end

3
db/schema.rb

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2022_12_21_081709) do
ActiveRecord::Schema[7.0].define(version: 2022_12_21_105502) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -419,6 +419,7 @@ ActiveRecord::Schema[7.0].define(version: 2022_12_21_081709) do
t.integer "staircase"
t.integer "stairbought"
t.integer "stairowned"
t.decimal "mrent", precision: 10, scale: 2
t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id"
t.index ["managing_organisation_id"], name: "index_sales_logs_on_managing_organisation_id"
t.index ["owning_organisation_id"], name: "index_sales_logs_on_owning_organisation_id"

Loading…
Cancel
Save