mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
10 lines
164 B
Ruby
10 lines
164 B
Ruby
class AddRelatedDeletion < ActiveRecord::Migration
|
|
def self.up
|
|
change_table :deleteds do |d|
|
|
d.integer :related_id
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
end
|
|
end
|