Skip to content

Commit a0db7cc

Browse files
committedJan 29, 2016
migration files
1 parent 11d9311 commit a0db7cc

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class RemoveMatchFromMessages < ActiveRecord::Migration
2+
def change
3+
remove_column :messages, :match_id
4+
end
5+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class MatchedIdToMessages < ActiveRecord::Migration
2+
def change
3+
add_column :messages, :matched_id, :integer
4+
end
5+
end
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.