Sha256: 11f626caf57092cf65f406c5fe6529b67728bd0ade6a89f86080bfac4b227e1c
Contents?: true
Size: 518 Bytes
Versions: 41
Compression:
Stored size: 518 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
41 entries across 41 versions & 1 rubygems