Allowing people to view/edit

This commit is contained in:
2014-02-09 05:13:35 -07:00
parent 2c4cd4a020
commit ee7e79a433
7 changed files with 20 additions and 11 deletions

View File

@@ -0,0 +1,5 @@
class AddModifiedByToResources < ActiveRecord::Migration
def change
add_column :resources, :modified_by, :integer
end
end

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20140209104356) do
ActiveRecord::Schema.define(:version => 20140209120648) do
create_table "cards", :force => true do |t|
t.string "card_number"
@@ -142,6 +142,7 @@ ActiveRecord::Schema.define(:version => 20140209104356) do
t.string "estimated_value"
t.integer "user_id"
t.datetime "disposed_at"
t.integer "modified_by"
end
create_table "settings", :force => true do |t|