mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
7 lines
183 B
Ruby
7 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
|