mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
12 lines
206 B
Ruby
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
|