mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
6 lines
183 B
Ruby
6 lines
183 B
Ruby
class AddDiscardToRepositories < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :repositories, :discarded_at, :datetime
|
|
add_index :repositories, :discarded_at
|
|
end
|
|
end
|