Sha256: 56dd5a669989d846563f917faff225d931162827fd7867145a10641c41c756c1
Contents?: true
Size: 376 Bytes
Versions: 263
Compression:
Stored size: 376 Bytes
Contents
class CreateImportRequests < ActiveRecord::Migration def change create_table :import_requests do |t| t.string :isbn t.string :state t.integer :manifestation_id t.integer :user_id t.timestamps end add_index :import_requests, :isbn add_index :import_requests, :manifestation_id add_index :import_requests, :user_id end end
Version data entries
263 entries across 263 versions & 15 rubygems