Class: CreateImages

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/merrycms/templates/create_images_migration.rb

Class Method Summary collapse

Class Method Details

.downObject



13
14
15
# File 'lib/generators/merrycms/templates/create_images_migration.rb', line 13

def self.down
  drop_table :images
end

.upObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/generators/merrycms/templates/create_images_migration.rb', line 2

def self.up
  create_table :images do |t|
    t.string    :title
    t.string    :image_file_name
    t.string    :image_content_type
    t.integer   :image_file_size
    t.datetime  :image_updated_at
    t.timestamps
  end
end