1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00
my-images/db/migrate/20140323140443_create_images.rb
2014-03-24 08:31:27 +00:00

12 lines
206 B
Ruby

class CreateImages < ActiveRecord::Migration
def change
create_table :images do |t|
t.integer :user_id
t.string :image_uid
t.string :image_name
t.timestamps
end
end
end