Sha256: 603e64a3db097a7cbfd65d73101f0d350edca953111209c32a1a489f617bdf64

Contents?: true

Size: 736 Bytes

Versions: 3

Compression:

Stored size: 736 Bytes

Contents

ActiveRecord::Migration.verbose = false

ActiveRecord::Schema.define do
  create_table :permanent_posts, 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
    t.timestamp  :deleted_at
  end

  create_table :posts, 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

  create_table :permanent_uids, force: true do |t|
    t.integer :uid
    t.timestamp :deleted_at
  end

  create_table :uids, force: true do |t|
    t.integer :uid
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
paperclip-permanent_records-0.6.0 spec/data/schema.rb
paperclip-permanent_records-0.5.0 spec/data/schema.rb
paperclip-permanent_records-0.4.0 spec/data/schema.rb