OSDN Git Service

Merge branch 'v05' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v05
[pettanr/pettanr.git] / db / migrate / 20120816024744_create_ground_colors.rb
1 class CreateGroundColors < ActiveRecord::Migration
2   def change
3     create_table :ground_colors do |t|
4       t.integer :panel_id, :null => false, :default => 0
5       t.integer :color_id, :null => false, :default => 0
6       t.integer :author_id, :null => false, :default => 0
7       t.integer :z, :null => false, :default => 0
8
9       t.timestamps
10     end
11   end
12 end