|
|
@ -11,7 +11,7 @@
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# It's strongly recommended to check this file into your version control system.
|
|
|
|
# It's strongly recommended to check this file into your version control system.
|
|
|
|
|
|
|
|
|
|
|
|
ActiveRecord::Schema.define(:version => 20140519070751) do
|
|
|
|
ActiveRecord::Schema.define(:version => 20140521072851) do
|
|
|
|
|
|
|
|
|
|
|
|
create_table "activities", :force => true do |t|
|
|
|
|
create_table "activities", :force => true do |t|
|
|
|
|
t.integer "act_id", :null => false
|
|
|
|
t.integer "act_id", :null => false
|
|
|
@ -23,6 +23,11 @@ ActiveRecord::Schema.define(:version => 20140519070751) do
|
|
|
|
add_index "activities", ["user_id", "act_type"], :name => "index_activities_on_user_id_and_act_type"
|
|
|
|
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"
|
|
|
|
add_index "activities", ["user_id"], :name => "index_activities_on_user_id"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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|
|
|
|
|
create_table "apply_project_masters", :force => true do |t|
|
|
|
|
t.integer "user_id"
|
|
|
|
t.integer "user_id"
|
|
|
|
t.string "apply_type"
|
|
|
|
t.string "apply_type"
|
|
|
@ -52,11 +57,14 @@ ActiveRecord::Schema.define(:version => 20140519070751) do
|
|
|
|
add_index "attachments", ["container_id", "container_type"], :name => "index_attachments_on_container_id_and_container_type"
|
|
|
|
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"
|
|
|
|
add_index "attachments", ["created_on"], :name => "index_attachments_on_created_on"
|
|
|
|
|
|
|
|
|
|
|
|
create_table "attachmentstypes", :force => true do |t|
|
|
|
|
create_table "attachmentstypes", :id => false, :force => true do |t|
|
|
|
|
t.integer "typeId", :null => false
|
|
|
|
t.integer "id", :null => false
|
|
|
|
|
|
|
|
t.integer "typeId"
|
|
|
|
t.string "typeName", :limit => 50
|
|
|
|
t.string "typeName", :limit => 50
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add_index "attachmentstypes", ["id"], :name => "id"
|
|
|
|
|
|
|
|
|
|
|
|
create_table "auth_sources", :force => true do |t|
|
|
|
|
create_table "auth_sources", :force => true do |t|
|
|
|
|
t.string "type", :limit => 30, :default => "", :null => false
|
|
|
|
t.string "type", :limit => 30, :default => "", :null => false
|
|
|
|
t.string "name", :limit => 60, :default => "", :null => false
|
|
|
|
t.string "name", :limit => 60, :default => "", :null => false
|
|
|
@ -675,6 +683,9 @@ ActiveRecord::Schema.define(:version => 20140519070751) do
|
|
|
|
t.integer "viewed_count_crawl", :default => 0
|
|
|
|
t.integer "viewed_count_crawl", :default => 0
|
|
|
|
t.integer "viewed_count_local", :default => 0
|
|
|
|
t.integer "viewed_count_local", :default => 0
|
|
|
|
t.string "url"
|
|
|
|
t.string "url"
|
|
|
|
|
|
|
|
t.string "username"
|
|
|
|
|
|
|
|
t.string "userhomeurl"
|
|
|
|
|
|
|
|
t.date "date_collected"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
create_table "repositories", :force => true do |t|
|
|
|
|
create_table "repositories", :force => true do |t|
|
|
|
@ -763,6 +774,7 @@ ActiveRecord::Schema.define(:version => 20140519070751) do
|
|
|
|
t.integer "softapplication_id"
|
|
|
|
t.integer "softapplication_id"
|
|
|
|
t.integer "is_public"
|
|
|
|
t.integer "is_public"
|
|
|
|
t.string "application_developers"
|
|
|
|
t.string "application_developers"
|
|
|
|
|
|
|
|
t.string "deposit_project_url"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
create_table "students_for_courses", :force => true do |t|
|
|
|
|
create_table "students_for_courses", :force => true do |t|
|
|
|
|