You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
373 B
15 lines
373 B
class AllowDecimalStairboughtAndStairowned < ActiveRecord::Migration[7.0] |
|
def up |
|
change_table :sales_logs, bulk: true do |t| |
|
t.change :stairbought, :decimal |
|
t.change :stairowned, :decimal |
|
end |
|
end |
|
|
|
def down |
|
change_table :sales_logs, bulk: true do |t| |
|
t.change :stairbought, :integer |
|
t.change :stairowned, :integer |
|
end |
|
end |
|
end
|
|
|