OSDN Git Service

speech balloon template changed
[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       t.string :md5, :null => false, :limit => 32
9
10       t.timestamps
11     end
12   end
13 end