7 lines
142 B
Ruby
7 lines
142 B
Ruby
class CreateScreenshots < ActiveRecord::Migration[5.0]
|
|
def change
|
|
change_table :screenshots do |t|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|