mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
11 lines
164 B
Ruby
11 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
|