Sha256: ba977d6277d94e0dca819cd4558f4306659cf2bd9f1a063326170b43d136f965

Contents?: true

Size: 595 Bytes

Versions: 4

Compression:

Stored size: 595 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 "events", :force => true do |t|
    t.column "title", "string"
    t.column "location", "string"
    t.column "slug", "string"
  end
  
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
slug-0.5.4 test/schema.rb
slug-0.5.3 test/schema.rb
slug-0.5.2 test/schema.rb
slug-0.5.1 test/schema.rb