sideplace_app/db/migrate/20150325092056_create_annonce_photos.rb

16 lines
364 B
Ruby

class CreateAnnoncePhotos < ActiveRecord::Migration
def change
create_table :annonce_photos do |t|
t.references :annonce, index: true
t.string :file
t.string :title
t.boolean :enabled
t.boolean :moderated
t.integer :position
t.timestamps null: false
end
add_foreign_key :annonce_photos, :annonces
end
end