Created
January 19, 2013 19:30
-
-
Save Jimgerneer/4574571 to your computer and use it in GitHub Desktop.
current schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActiveRecord::Schema.define(:version => 20130117202104) do | |
create_table "civilizations", :force => true do |t| | |
t.string "name" | |
t.datetime "created_at", :null => false | |
t.datetime "updated_at", :null => false | |
end | |
create_table "claims", :force => true do |t| | |
t.integer "hunter_id" | |
t.integer "perpetrator_id" | |
t.text "description" | |
t.datetime "created_at", :null => false | |
t.datetime "updated_at", :null => false | |
end | |
add_index "claims", ["hunter_id"], :name => "index_claims_on_hunter_id" | |
add_index "claims", ["perpetrator_id"], :name => "index_claims_on_perpetrator_id" | |
create_table "evidence_links", :force => true do |t| | |
t.integer "report_id" | |
t.string "link_text" | |
t.datetime "created_at", :null => false | |
t.datetime "updated_at", :null => false | |
end | |
add_index "evidence_links", ["report_id"], :name => "index_evidence_links_on_report_id" | |
create_table "perpetrators", :force => true do |t| | |
t.string "name" | |
t.datetime "created_at", :null => false | |
t.datetime "updated_at", :null => false | |
end | |
create_table "reports", :force => true do |t| | |
t.string "location" | |
t.datetime "created_at", :null => false | |
t.datetime "updated_at", :null => false | |
t.boolean "active", :default => true | |
t.integer "perpetrator_id" | |
t.integer "bounty", :default => 0, :null => false | |
t.integer "user_id" | |
t.integer "x_coord" | |
t.integer "y_coord" | |
t.text "description" | |
t.integer "civilization_id" | |
t.text "rendered_description" | |
end | |
add_index "reports", ["civilization_id"], :name => "index_reports_on_civilization_id" | |
add_index "reports", ["perpetrator_id"], :name => "index_reports_on_perpetrator_id" | |
create_table "rewards", :force => true do |t| | |
t.integer "claim_id" | |
t.integer "report_id" | |
t.string "key" | |
t.datetime "created_at", :null => false | |
t.datetime "updated_at", :null => false | |
end | |
add_index "rewards", ["claim_id"], :name => "index_rewards_on_claim_id" | |
add_index "rewards", ["report_id"], :name => "index_rewards_on_report_id" | |
create_table "users", :force => true do |t| | |
t.string "username" | |
t.datetime "created_at", :null => false | |
t.datetime "updated_at", :null => false | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment