OSDN Git Service

fixed assets/ & views/layouts/
[pettanr/pettanr.git] / db / migrate / 20120102071851_create_system_pictures.rb
1 class CreateSystemPictures < ActiveRecord::Migration
2   def change
3     create_table :system_pictures do |t|
4       t.string :ext, :null => false
5       t.integer :width, :null => false
6       t.integer :height, :null => false
7       t.integer :filesize, :null => false
8
9       t.timestamps
10     end
11   end
12 end