Sha256: d2ccd49e4b070ef839ada51f3d6f6070e238e57e32ad00c7e3a867fa8a10445c
Contents?: true
Size: 470 Bytes
Versions: 20
Compression:
Stored size: 470 Bytes
Contents
# This migration comes from blacklight (originally 20140202020202) # frozen_string_literal: true class CreateBookmarks < ActiveRecord::Migration[4.2] def self.up create_table :bookmarks do |t| t.integer :user_id, index: true, null: false t.string :user_type t.string :document_id, index: true t.string :document_type t.binary :title t.timestamps null: false end end def self.down drop_table :bookmarks end end
Version data entries
20 entries across 20 versions & 1 rubygems