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

15 lines
290 B
Ruby

# -*- encoding : utf-8 -*-
class CreatePeopleNewsgroups < ActiveRecord::Migration
def self.up
create_table :people_newsgroups do |t|
t.references :person
t.references :newsgroup
t.timestamps
end
end
def self.down
drop_table :people_newsgroups
end
end