Sha256: a3ac101c0fec521dffad6bbdf29727682c0a915e9f9eac7b46f800c384b5f377

Contents?: true

Size: 667 Bytes

Versions: 4

Compression:

Stored size: 667 Bytes

Contents

ActiveRecord::Migration.verbose = false

ActiveRecord::Schema.define do
  create_table :posts, force: true do |t|
    t.integer    :rating
  end

  create_table :post_translations, force: true do |t|
    t.string     :locale
    t.references :post
    t.string     :image_file_name
    t.integer    :image_file_size
    t.string     :image_content_type
    t.string     :image_fingerprint
    t.timestamp  :image_updated_at
  end

  create_table :untranslateds, force: true do |t|
    t.string     :image_file_name
    t.integer    :image_file_size
    t.string     :image_content_type
    t.string     :image_fingerprint
    t.timestamp  :image_updated_at
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
paperclip-globalize3-3.3.0 spec/data/schema.rb
paperclip-globalize3-3.2.0 spec/data/schema.rb
paperclip-globalize3-3.1.0 spec/data/schema.rb
paperclip-globalize3-3.0.0 spec/data/schema.rb