initial commit

This commit is contained in:
Senad Uka
2013-12-09 03:23:49 +01:00
parent 9582c13e0c
commit e8751fa215
204 changed files with 6675 additions and 41 deletions

BIN
db/development.sqlite3 Normal file

Binary file not shown.

View File

@@ -0,0 +1,10 @@
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :username
t.integer :smf_id
t.timestamps
end
end
end

View File

@@ -0,0 +1,10 @@
class CreateResults < ActiveRecord::Migration
def change
create_table :results do |t|
t.integer :user_id
t.string :time
t.timestamps
end
end
end

View File

@@ -0,0 +1,10 @@
class CreateGuesses < ActiveRecord::Migration
def change
create_table :guesses do |t|
t.string :username
t.string :definition
t.timestamps
end
end
end

View File

@@ -0,0 +1,11 @@
class CreateSolutions < ActiveRecord::Migration
def change
create_table :solutions do |t|
t.integer :number
t.string :time
t.string :username
t.timestamps
end
end
end

45
db/schema.rb Normal file
View File

@@ -0,0 +1,45 @@
# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20131206040324) do
create_table "guesses", force: true do |t|
t.string "username"
t.string "definition"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "results", force: true do |t|
t.integer "user_id"
t.string "time"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "solutions", force: true do |t|
t.integer "number"
t.string "time"
t.string "username"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "users", force: true do |t|
t.string "username"
t.integer "smf_id"
t.datetime "created_at"
t.datetime "updated_at"
end
end

7
db/seeds.rb Normal file
View File

@@ -0,0 +1,7 @@
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)