Sha256: 268cd903c14803287aec750256f49dbcc2026a1f49b762d70afb318e106a61dd
Contents?: true
Size: 335 Bytes
Versions: 110
Compression:
Stored size: 335 Bytes
Contents
class AddReports < ActiveRecord::Migration def self.up create_table :reports do |t| t.integer :workspace_id, :null => false, :default => 1 t.string :created_by t.string :rtype t.string :path, :limit => 1024 t.text :options t.timestamps end end def self.down drop_table :reports end end
Version data entries
110 entries across 110 versions & 1 rubygems