Return to Snippet

Revision: 3034
at May 25, 2007 14:26 by jpowell


Initial Code
	      class AddEntriesTable < ActiveRecord::Migration
          def self.up
            create_table :entries do |table|
              table.column :title, :string
              table.column :content, :text
              table.column  :created_at, :datetime
            end
          end

          def self.down
            drop_table :entries
          end
        end

Initial URL


Initial Description


Initial Title
Rake Migrate Migrations Create Table Example

Initial Tags
table, textmate, rails

Initial Language
Rails