Skip to content

Instantly share code, notes, and snippets.

@HeroicEric
Created September 26, 2011 01:42
Show Gist options
  • Save HeroicEric/1241437 to your computer and use it in GitHub Desktop.
Save HeroicEric/1241437 to your computer and use it in GitHub Desktop.
ActiveRecord::Schema.define(:version => 20110924001800) do
create_table "domains", :force => true do |t|
t.string "name"
t.string "url"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "domains_keywords", :force => true do |t|
t.integer "domain_id"
t.integer "ticket_id"
end
create_table "keywords", :force => true do |t|
t.integer "rank"
t.string "term"
t.integer "domain_id"
t.datetime "created_at"
t.datetime "updated_at"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment