fixes & forums started

This commit is contained in:
jomo
2013-08-02 07:55:32 +02:00
parent 45ebd0bd05
commit e052ad8859
39 changed files with 358 additions and 436 deletions

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20130728003021) do
ActiveRecord::Schema.define(:version => 20130802051521) do
create_table "blogposts", :force => true do |t|
t.string "title"
@@ -29,6 +29,21 @@ ActiveRecord::Schema.define(:version => 20130728003021) do
t.datetime "updated_at", :null => false
end
create_table "forumgroups", :force => true do |t|
t.string "name"
t.integer "position"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "forums", :force => true do |t|
t.string "name"
t.integer "position"
t.integer "forumgroup_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "users", :force => true do |t|
t.string "name", :null => false
t.string "ign", :null => false