Added photo model
This commit is contained in:
parent
0f697f3dbe
commit
69ddea47dd
6 changed files with 62 additions and 1 deletions
13
db/migrate/20140610064046_create_photos.rb
Normal file
13
db/migrate/20140610064046_create_photos.rb
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
class CreatePhotos < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :photos do |t|
|
||||
t.text :description
|
||||
t.string :picture_file_name
|
||||
t.string :picture_content_type
|
||||
t.integer :picture_file_size
|
||||
t.datetime :picture_updated_at
|
||||
t.belongs_to :conference
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue