Sha256: 75ca10d26e12ddd5f363996a3922d855eb5ee9ca03ce200f05dd1723d29eb6e7
Contents?: true
Size: 322 Bytes
Versions: 97
Compression:
Stored size: 322 Bytes
Contents
# 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
97 entries across 97 versions & 2 rubygems