Sha256: 66cd7061853f5dd426e636613b3999785e0dc7e12b004155bc21c5f8f5d71e7b
Contents?: true
Size: 395 Bytes
Versions: 59
Compression:
Stored size: 395 Bytes
Contents
# This migration comes from blacklight (originally 20140202020202) # -*- 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 end end def self.down drop_table :bookmarks end end
Version data entries
59 entries across 59 versions & 3 rubygems