Sha256: 9e119a9ef7fa8200807aea51f96ae711dc65298bba9f2e0f7010f1b58d192f8c
Contents?: true
Size: 389 Bytes
Versions: 20
Compression:
Stored size: 389 Bytes
Contents
# This migration comes from blacklight (originally 20140202020201) # frozen_string_literal: true class CreateSearches < ActiveRecord::Migration[4.2] def self.up create_table :searches do |t| t.binary :query_params t.integer :user_id, index: true t.string :user_type t.timestamps null: false end end def self.down drop_table :searches end end
Version data entries
20 entries across 20 versions & 1 rubygems