pic_vert_app/db/migrate/20091216195525_create_newsgroups.rb
2013-01-08 23:28:47 +01:00

16 lines
261 B
Ruby

# -*- encoding : utf-8 -*-
class CreateNewsgroups < ActiveRecord::Migration
def self.up
create_table :newsgroups do |t|
t.string :name
t.text :description
t.timestamps
end
end
def self.down
drop_table :newsgroups
end
end