Sha256: 436262b30e5b6607abf3449dde5104c1cdd8bfb347a2320700f08540794d0c6f

Contents?: true

Size: 500 Bytes

Versions: 4

Compression:

Stored size: 500 Bytes

Contents

class PoseInstall < ActiveRecord::Migration

  def change
    create_table "pose_assignments" do |t|
      t.integer "word_id",                 null: false
      t.integer "posable_id",              null: false
      t.string  "posable_type", limit: 60, null: false
    end
    add_index "pose_assignments", :word_id
    add_index "pose_assignments", :posable_id

    create_table "pose_words" do |t|
      t.string "text", limit: 80, null: false
    end
    add_index "pose_words", :text
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pose-3.0.0 db/migrate/20130308144915_pose_install.rb
pose-2.1.0 db/migrate/20130308144915_pose_install.rb
pose-2.0.1 db/migrate/20130308144915_pose_install.rb
pose-2.0.0 db/migrate/20130308144915_pose_install.rb