14 lines
263 B
Ruby
14 lines
263 B
Ruby
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
|