Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments. Please
Sign in
to add in-line comments.
Keyboard Shortcuts
File
u
:
up to issue
m
:
publish + mail comments
M
:
edit review message
j
/
k
:
jump to file after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Enter>
:
respond to / edit current comment
Issue
u
:
up to list of issues
m
:
publish + mail comments
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
#
:
close issue
Comment/message editing
<Ctrl>
+
s
:
save comment
<Esc>
:
cancel edit
Rietveld
Code Review Tool
Help
|
Bug tracker
|
Discussion group
|
Source code
|
Sign in
(9)
Issues
Repositories
Recent Issues
|
Sign in
with your
Google Account
to create issues and add comments
Side by Side Diff: db/migrate/004_create_tags.rb
Issue
2323
:
Upgrade to Rails 2
SVN Base: http://familyconnect.rubyforge.org/svn/trunk/
Patch Set:
Created 1 year, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Jump to:
app/controllers/account_controller.rb
app/controllers/administrator_controller.rb
app/helpers/application_helper.rb
app/models/photo.rb
app/models/user.rb
app/views/account/_user_news_links.rhtml
app/views/account/edit.rhtml
app/views/account/forgot_password.rhtml
app/views/account/login.rhtml
app/views/account/signup.rhtml
app/views/account/upload_photo.rhtml
app/views/address_book/index.rhtml
app/views/administrator/setup.rhtml
app/views/administrator/signup.rhtml
app/views/administrator/upload_family_photo.rhtml
app/views/layouts/application.rhtml
app/views/news/_news_item.rhtml
app/views/news/edit.rhtml
app/views/news/index.rhtml
app/views/news/new.rhtml
db/migrate/001_add_portrait_column.rb
db/migrate/001_create_users.rb
db/migrate/002_add_photos_table.rb
db/migrate/002_create_news_items.rb
db/migrate/003_admin_flag_and_settings_table.rb
db/migrate/003_create_photos.rb
db/migrate/004_add_birthday_and_visited_at_columns.rb
db/migrate/004_create_tags.rb
db/migrate/005_tags_photos.rb
db/migrate/006_tags_news_items.rb
db/migrate/007_settings.rb
View unified diff
|
Download patch
« db/migrate/004_add_birthday_and_visited_at_columns.rb
('k') |
db/migrate/005_tags_photos.rb »
('j') |
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
class CreateTags < ActiveRecord::Migration
2
def self.up
3
create_table :tags do |t|
4
t.string :name
5
t.timestamps
6
end
7
end
8
9
def self.down
10
drop_table :tags
11
end
12
end
OLD
NEW
« db/migrate/004_add_birthday_and_visited_at_columns.rb
('k') |
db/migrate/005_tags_photos.rb »
('j') |
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
Issue 2323: Upgrade to Rails 2
Created 1 year, 4 months ago by shulet
Modified 3 months, 1 week ago
Reviewers: duane.johnson_gmail.com
SVN Base: http://familyconnect.rubyforge.org/svn/trunk/
Comments: 0
Recent Issues
|
This issue
This is Rietveld r483