Sha256: 8d7d7f17614261f29b5579584d8176c37dfea53ce0e35964a01b445faae813f2

Contents?: true

Size: 714 Bytes

Versions: 6

Compression:

Stored size: 714 Bytes

Contents

ActiveRecord::Schema.define(:version => 1) do

  create_table "articles", :force => true do |t|
    t.column "headline", "string"
    t.column "section", "string"
    t.column "slug", "string"
  end
  
  create_table "people", :force => true do |t|
    t.column "name", "string"
    t.column "web_slug", "string"
  end
  
  create_table "companies", :force => true do |t|
    t.column "name", "string"
    t.column "slug", "string"
  end
  
  create_table "posts", :force => true do |t|
    t.column "headline", "string"
    t.column "slug", "string"
  end
  
  create_table "events", :force => true do |t|
    t.column "title", "string"
    t.column "location", "string"
    t.column "slug", "string"
  end
  
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
slug-0.8.0 test/schema.rb
slug-0.6.1 test/schema.rb
slug-0.6.0 test/schema.rb
slug-0.5.7 test/schema.rb
slug-0.5.6 test/schema.rb
slug-0.5.5 test/schema.rb