Sha256: e58394ff1ab800f71b87b6d80570fd90732c1b0b4b482ff51019a9dab6566a1b

Contents?: true

Size: 676 Bytes

Versions: 7

Compression:

Stored size: 676 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

7 entries across 7 versions & 1 rubygems

Version Path
paperclip-globalize3-2.3.0 spec/data/schema.rb
paperclip-globalize3-2.2.0 spec/data/schema.rb
paperclip-globalize3-2.1.0 spec/data/schema.rb
paperclip-globalize3-1.1.0 spec/data/schema.rb
paperclip-globalize3-2.0.0 spec/data/schema.rb
paperclip-globalize3-1.0.0 spec/data/schema.rb
paperclip-globalize3-0.1.0 spec/data/schema.rb