Changeset 93

Show
Ignore:
Timestamp:
11/08/07 17:46:16 (4 years ago)
Author:
cs186
Message:

remove spurious colons

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • hw/hw4/library/db/migrate/002_create_books.rb

    r71 r93  
    22  def self.up 
    33    create_table :books do |t| 
    4        :t.column :isbn, :integer 
    5        :t.column :title, :string 
    6        :t.column :author, :string 
     4       t.column :isbn, :integer 
     5       t.column :title, :string 
     6       t.column :author, :string 
    77    end 
    88  end