mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-19 05:47:53 +08:00
7 lines
172 B
Ruby
7 lines
172 B
Ruby
|
class AddDiscardedAtToResults < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :results, :discarded_at, :datetime
|
||
|
add_index :results, :discarded_at
|
||
|
end
|
||
|
end
|