Sha256: 4ec70b92a3813aaaac707cc445ac424ec52feb400949e06f85408ebe6c5879f8
Contents?: true
Size: 512 Bytes
Versions: 20
Compression:
Stored size: 512 Bytes
Contents
class CreateEssencePictures < ActiveRecord::Migration def self.up create_table :essence_pictures do |t| t.integer :picture_id t.string :caption t.string :title t.string :alt_tag t.string :link t.string :link_class_name t.string :link_title t.string :css_class, :default => 'no_float' t.boolean :open_link_in_new_window, :default => false t.userstamps t.timestamps end end def self.down drop_table :essence_pictures end end
Version data entries
20 entries across 20 versions & 1 rubygems