Skip to content

Commit

Permalink
removed timestamps from permissions_users table. this refs #30
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Dec 1, 2011
1 parent b24e651 commit a8facc2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class RemoveTimestampsFromPermissionsUsers < ActiveRecord::Migration
def self.up
remove_timestamps :permissions_users
end

def self.down
add_timestamps :permissions_users
end
end

8 changes: 3 additions & 5 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20111023132533) do
ActiveRecord::Schema.define(:version => 20111201180424) do

create_table "data_calendar_events", :force => true do |t|
t.integer "category_id"
Expand Down Expand Up @@ -394,10 +394,8 @@
end

create_table "permissions_users", :id => false, :force => true do |t|
t.integer "permission_id"
t.integer "user_id"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "permission_id"
t.integer "user_id"
end

create_table "request_logs", :force => true do |t|
Expand Down

0 comments on commit a8facc2

Please sign in to comment.