Sha256: aafe4e0bdb6f4c63316dc50861ad179c9dc262e9b62f02ed1921bd1c30677da2

Contents?: true

Size: 1.08 KB

Versions: 112

Compression:

Stored size: 1.08 KB

Contents

ActiveRecord::Schema.define do

  create_table "users", :force => true do |t|
    t.column "name",       :text
    t.column "salary",     :integer,  :default => 70000
    t.column "created_at", :datetime
    t.column "updated_at", :datetime
    t.column "type",       :text
  end

  create_table "projects", :force => true do |t|
    t.column "name", :text
  end

  create_table "developers_projects", :id => false, :force => true do |t|
    t.column "developer_id", :integer, :null => false
    t.column "project_id",   :integer, :null => false
    t.column "joined_on",    :date
    t.column "access_level", :integer, :default => 1
  end

  create_table "topics", :force => true do |t|
    t.column "project_id", :integer
    t.column "title",      :string
    t.column "subtitle",   :string
    t.column "content",    :text
    t.column "created_at", :datetime
    t.column "updated_at", :datetime
  end

  create_table "replies", :force => true do |t|
    t.column "content",    :text
    t.column "created_at", :datetime
    t.column "updated_at", :datetime
    t.column "topic_id",   :integer
  end

end

Version data entries

112 entries across 112 versions & 43 rubygems

Version Path
will_paginate-3.3.1 spec/fixtures/schema.rb
will_paginate-3.3.0 spec/fixtures/schema.rb
will_paginate-3.2.1 spec/fixtures/schema.rb
will_paginate-3.2.0 spec/fixtures/schema.rb
will_paginate-3.1.8 spec/fixtures/schema.rb
will_paginate-3.1.7 spec/fixtures/schema.rb
will_paginate-3.1.6 spec/fixtures/schema.rb
will_paginate-3.0.12 spec/fixtures/schema.rb
will_paginate-3.1.5 spec/fixtures/schema.rb
will_paginate-3.0.11 spec/fixtures/schema.rb
will_paginate-2.3.17 test/fixtures/schema.rb
will_paginate-3.1.3 spec/fixtures/schema.rb
will_paginate-3.0.10 spec/fixtures/schema.rb
will_paginate-3.0.9 spec/fixtures/schema.rb
will_paginate-3.1.2 spec/fixtures/schema.rb
will_paginate-3.1.1 spec/fixtures/schema.rb
will_paginate-3.0.8 spec/fixtures/schema.rb
will_paginate-3.1.0 spec/fixtures/schema.rb
will_paginate_seo-3.0.4 spec/fixtures/schema.rb
auxesis-will_paginate-3.0.0 spec/fixtures/schema.rb