Skip to content

Instantly share code, notes, and snippets.

@kracekumar
Created March 11, 2011 06:31
Show Gist options
  • Save kracekumar/865541 to your computer and use it in GitHub Desktop.
Save kracekumar/865541 to your computer and use it in GitHub Desktop.
class CreateNews < ActiveRecord::Migration
def self.up
create_table :news do |t|
t.string :title
t.text :content
t.references :author
t.timestamps
end
create_table :news_comments do |t|
t.text :content
t.references :news
t.references :author
t.timestamps
end
end
def self.down
drop_table :news_comments
drop_table :news
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment