Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / db / migrate / 008_create_citations.rb
1 class CreateCitations < ActiveRecord::Migration
2   def self.up
3     create_table :citations do |t|
4       t.string :name
5       t.timestamps 
6     end
7   end
8
9   def self.down
10     drop_table :citations
11   end
12 end