This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
barleysodas/db/migrate/007_create_peoples.rb

14 lines
306 B
Ruby

class CreatePeoples < ActiveRecord::Migration
def self.up
create_table :peoples do |t|
t.column :title, :string
end
People.create :title => 'Guest', :page => Page.new
People.create :title => 'PenguinCoder', :page => Page.new
end
def self.down
drop_table :peoples
end
end