Sha256: 25a269115a7055798d7354517998e2d2a5be5005fc154152afc70b0fffd67f1b
Contents?: true
Size: 261 Bytes
Versions: 11
Compression:
Stored size: 261 Bytes
Contents
class CreateTickets < ActiveRecord::Migration def self.up create_table(:tickets) do |t| t.integer :project_id t.string :title t.string :description t.string :status end end def self.down drop_table(:tickets) end end
Version data entries
11 entries across 11 versions & 1 rubygems