Got uploading working

This commit is contained in:
2012-08-24 21:14:51 -07:00
commit b28efe046c
70 changed files with 1854 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