1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class CreateScraps < ActiveRecord::Migration
def self.up
create_table :scraps do |t|
t.text :content
t.integer :sender_id, :receiver_id
t.integer :scrap_id
t.timestamps
end
end
def self.down
drop_table :scraps
end
end
|