Sha256: 50d2014a726ebaec3e106adee2f0b8bc77cc53461c9dedf8cba2ebb443467ccb
Contents?: true
Size: 470 Bytes
Versions: 36
Compression:
Stored size: 470 Bytes
Contents
# frozen_string_literal: true # This migration comes from blacklight (originally 20140202020202) 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
36 entries across 25 versions & 1 rubygems