• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/MailDemo/MailDemoActiveRecordBindings/migrate/
1class CreateMailboxes < ActiveRecord::Migration
2  def self.up
3    create_table :mailboxes do |t|
4      t.column :title, :string, :default => 'title'
5    end
6  end
7
8  def self.down
9    drop_table :mailboxes
10  end
11end