10 lines
177 B
Ruby
10 lines
177 B
Ruby
|
class CreateEvidences < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :evidences do |t|
|
||
|
t.attachment :screenshot
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|