Sha256: 7ddd9e023f8260325414357f3017dc588376754d4ca2c99a5e4e73ce0f9cc12b
Contents?: true
Size: 352 Bytes
Versions: 22
Compression:
Stored size: 352 Bytes
Contents
class AddReports < ActiveRecord::Migration[4.2] 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 null: false end end def self.down drop_table :reports end end
Version data entries
22 entries across 22 versions & 2 rubygems