15 lines
234 B
Ruby
15 lines
234 B
Ruby
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
|