Sha256: 22b435ab6986ffd3de89fbb3befccec68174e8c5f0341da191189fac50f65380

Contents?: true

Size: 406 Bytes

Versions: 9

Compression:

Stored size: 406 Bytes

Contents

class CreatePwbContentPhotos < ActiveRecord::Migration[5.0]
  def change
    create_table :pwb_content_photos do |t|
      t.integer :content_id
      t.string :image
      t.string :description
      t.string :folder
      t.integer :file_size

      # To allow ordering of photos
      t.integer :sort_order
      t.timestamps null: false
    end
    add_index :pwb_content_photos, :content_id
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
pwb-1.4.0 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-1.3.0 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-1.2.0 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-1.1.1 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-1.0.0 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-0.1.1 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-0.1.0 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-0.0.2 db/migrate/20161116185442_create_pwb_content_photos.rb
pwb-0.0.1 db/migrate/20161116185442_create_pwb_content_photos.rb