Sha256: 1cb4d113b6a71e011de25778bd0ae205241cc766a758869cbaa37434563c4837
Contents?: true
Size: 323 Bytes
Versions: 96
Compression:
Stored size: 323 Bytes
Contents
class DropTableDocuments < ActiveRecord::Migration def change drop_table :documents create_table :documents do |t| t.string :sub_title t.string :doc_type t.string :status t.integer :version t.belongs_to :study t.timestamps end add_index :documents, :study_id end end
Version data entries
96 entries across 96 versions & 1 rubygems