10 lines
155 B
Ruby
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
|