Sha256: 5fb129b06794f01749d4ddb94a21a20a65ead73079b4e5944d3a4a6faba1dfb1

Contents?: true

Size: 175 Bytes

Versions: 1

Compression:

Stored size: 175 Bytes

Contents

class AddTagsToTickets < ActiveRecord::Migration
  def up
    add_column :tickets, :tags, :string, array: true
  end
  
  def down
    remove_column :tickets, :tags
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
houston-core-0.5.0.beta1 db/migrate/20130505144446_add_tags_to_tickets.rb