Sha256: e6c92a5aa4d67da3f893410f49e799cc273c5e6b023fa3854d2ad5ec733f61b9

Contents?: true

Size: 340 Bytes

Versions: 7

Compression:

Stored size: 340 Bytes

Contents

# -*- encoding : utf-8 -*-
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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
blacklight-5.19.2 db/migrate/20140202020202_create_bookmarks.rb
blacklight-5.19.1 db/migrate/20140202020202_create_bookmarks.rb
blacklight-5.19.0 db/migrate/20140202020202_create_bookmarks.rb
blacklight-5.18.0 db/migrate/20140202020202_create_bookmarks.rb
blacklight-5.17.2 db/migrate/20140202020202_create_bookmarks.rb
blacklight-5.17.1 db/migrate/20140202020202_create_bookmarks.rb
blacklight-5.17.0 db/migrate/20140202020202_create_bookmarks.rb