Differences between revisions 4 and 5
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
 * Create database [[TableOfContents]]

== Columns ==
=== Types ===
integer, float, datetime, date, timestamp, time, text, string, binary and boolean
=== Options ===
 * limit
  {{{ :limit => "50" }}}
 * default
  {{{ :default => "blah" }}}
 * null
  {{{ :null => false }}} implies NOT NULL

== Steps to start a new database ==
=== Create database using DDL ===
Line 13: Line 27:
  * Edit config/database.yml to match === Edit config/database.yml to match ===
Line 15: Line 29:
 * Generate initial migration script === Generate initial migration script ===
Line 20: Line 34:
 * Edit {{{db/migrate/001_initial.rb}}} === Edit {{{db/migrate/001_initial.rb}}} ===
Line 23: Line 37:
    def self.up
      create_table :users do |table|
        table.column :name, :string
        table.column :login, :string
        table.column :password, :string, :limit => 32
        table.column :email, :string
      end
  def self.up
    create_table :products do |table|
      table.column :title, :string, :limit => 100, :null => false
      table.column :description, :text, :null => false
      table.column :image_url, :string, :limit => 200, :null => false
      table.column :price, :float, :null => false
Line 31: Line 44:

    def self.down
      drop_table :users
   end
  end
  
def self.down
    drop_table :products
  end
Line 38: Line 52:
 * Run the migration === Run the migration ===
Line 42: Line 56:
----
See also

== See Also ==
Line 46: Line 60:
 * [http://www.rubyrailways.com/ruby-on-rails-migrations Peter Szinek's first] and [http://www.rubyrailways.com/ruby-on-rails-migrations-reloaded/ second] posts on migrations

TableOfContents

Columns

Types

integer, float, datetime, date, timestamp, time, text, string, binary and boolean

Options

  • limit
    •  :limit => "50" 

  • default
    •  :default => "blah" 

  • null
    •  :null => false  implies NOT NULL

Steps to start a new database

Create database using DDL

> mysql -u root -p

mysql> create database myproject_development;
mysql> create database myproject_test;
mysql> create database myproject_production;
mysql> grant all on myproject_development.* to 'railsdev'@'localhost';
mysql> grant all on myproject_test.* to 'railsdev'@'localhost';
mysql> grant all on myproject_production.* to 'prod'@'localhost' identified by 'username';
exit

Edit config/database.yml to match

Generate initial migration script

> ruby script/generate migration initial

This creates db/migrate/001_initial.rb

Edit {{{db/migrate/001_initial.rb}}}

class Initial < ActiveRecord::Migration
  def self.up
    create_table :products do |table|
      table.column :title,       :string, :limit => 100, :null => false      
      table.column :description, :text,                  :null => false      
      table.column :image_url,   :string, :limit => 200, :null => false
      table.column :price,       :float,                 :null => false
    end
  end
  
  def self.down
    drop_table :products
  end
end

Run the migration

> rake migrate

See Also


CategoryCheatSheet

iDIAcomputing: RailsMigrationsCheatSheet (last edited 2009-07-27 18:25:11 by localhost)