class CreateBookmarks < ActiveRecord::Migration def self.up create_table :bookmarks do |t| t.integer :user_id, :null=>false t.string :user_type t.string :document_id t.string :title t.timestamps null: false end end def self.down drop_table :bookmarks end end