OSDN Git Service

t#30021:add repeat on gp
[pettanr/pettanr.git] / db / migrate / 20120816024915_create_panel_colors.rb
1 class CreatePanelColors < ActiveRecord::Migration
2   def change
3     create_table :panel_colors do |t|
4       t.integer :panel_id, :null => false, :default => 0
5       t.integer :z, :null => false, :default => 0
6       t.integer :code, :null => false, :default => 0
7
8       t.timestamps
9     end
10   end
11 end