-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed timestamps from permissions_users table. this refs #30
- Loading branch information
ben
committed
Dec 1, 2011
1 parent
b24e651
commit a8facc2
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
db/migrate/20111201180424_remove_timestamps_from_permissions_users.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters