Surprise Rails app!

This commit is contained in:
2012-08-30 23:54:25 -07:00
parent d6f1909591
commit e4ff40e5a1
84 changed files with 1771 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :name
t.integer :card_id
t.string :card_number
t.integer :card_permissions
t.timestamps
end
end
end

View File

@@ -0,0 +1,10 @@
class CreateDoorLogs < ActiveRecord::Migration
def change
create_table :door_logs do |t|
t.string :key
t.integer :data
t.timestamps
end
end
end

31
db/schema.rb Normal file
View File

@@ -0,0 +1,31 @@
# 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 to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20120825041626) do
create_table "door_logs", :force => true do |t|
t.string "key"
t.integer "data"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "users", :force => true do |t|
t.string "name"
t.integer "card_id"
t.string "card_number"
t.integer "card_permissions"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
end