|
|
|
@ -11,7 +11,7 @@
|
|
|
|
|
#
|
|
|
|
|
# It's strongly recommended to check this file into your version control system.
|
|
|
|
|
|
|
|
|
|
ActiveRecord::Schema.define(:version => 20140519074133) do
|
|
|
|
|
ActiveRecord::Schema.define(:version => 20140522025721) do
|
|
|
|
|
|
|
|
|
|
create_table "activities", :force => true do |t|
|
|
|
|
|
t.integer "act_id", :null => false
|
|
|
|
@ -23,9 +23,9 @@ ActiveRecord::Schema.define(:version => 20140519074133) do
|
|
|
|
|
add_index "activities", ["user_id", "act_type"], :name => "index_activities_on_user_id_and_act_type"
|
|
|
|
|
add_index "activities", ["user_id"], :name => "index_activities_on_user_id"
|
|
|
|
|
|
|
|
|
|
create_table "andoidcontests", :force => true do |t|
|
|
|
|
|
t.datetime "created_at", :null => false
|
|
|
|
|
t.datetime "updated_at", :null => false
|
|
|
|
|
create_table "applied_projects", :force => true do |t|
|
|
|
|
|
t.integer "project_id", :null => false
|
|
|
|
|
t.integer "user_id", :null => false
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
create_table "apply_project_masters", :force => true do |t|
|
|
|
|
@ -57,11 +57,14 @@ ActiveRecord::Schema.define(:version => 20140519074133) do
|
|
|
|
|
add_index "attachments", ["container_id", "container_type"], :name => "index_attachments_on_container_id_and_container_type"
|
|
|
|
|
add_index "attachments", ["created_on"], :name => "index_attachments_on_created_on"
|
|
|
|
|
|
|
|
|
|
create_table "attachmentstypes", :force => true do |t|
|
|
|
|
|
t.integer "typeId", :null => false
|
|
|
|
|
create_table "attachmentstypes", :id => false, :force => true do |t|
|
|
|
|
|
t.integer "id", :null => false
|
|
|
|
|
t.integer "typeId"
|
|
|
|
|
t.string "typeName", :limit => 50
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
add_index "attachmentstypes", ["id"], :name => "id"
|
|
|
|
|
|
|
|
|
|
create_table "auth_sources", :force => true do |t|
|
|
|
|
|
t.string "type", :limit => 30, :default => "", :null => false
|
|
|
|
|
t.string "name", :limit => 60, :default => "", :null => false
|
|
|
|
@ -651,8 +654,8 @@ ActiveRecord::Schema.define(:version => 20140519074133) do
|
|
|
|
|
t.boolean "inherit_members", :default => false, :null => false
|
|
|
|
|
t.integer "project_type"
|
|
|
|
|
t.boolean "hidden_repo", :default => false, :null => false
|
|
|
|
|
t.integer "user_id"
|
|
|
|
|
t.integer "attachmenttype", :default => 1
|
|
|
|
|
t.integer "user_id"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
add_index "projects", ["lft"], :name => "index_projects_on_lft"
|
|
|
|
|