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.
11 lines
278 B
11 lines
278 B
3 years ago
|
class ChangeDatetime < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
change_table :case_logs, bulk: true do |t|
|
||
|
t.remove :sale_completion_date
|
||
|
t.column :sale_completion_date, :datetime
|
||
|
t.remove :startdate
|
||
|
t.column :startdate, :datetime
|
||
|
end
|
||
|
end
|
||
|
end
|