wblog/db/migrate/20160420082811_create_photo...

10 lines
155 B
Ruby

class CreatePhotos < ActiveRecord::Migration[5.0]
def change
create_table :photos do |t|
t.string :image
t.timestamps
end
end
end