blob: 689fb12682b57e189040483985de0ec131022542 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CreateCleanUpResults < ActiveRecord::Migration
def change
create_table :clean_up_results do |t|
t.string :message_key
t.hstore :message_attributs
t.references :clean_up, index: true
t.timestamps
end
end
end
|