OSDN Git Service

Merge branch 'v06jq' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / db / migrate / 20120617054342_create_license_groups.rb
1 class CreateLicenseGroups < ActiveRecord::Migration
2   def change
3     create_table :license_groups do |t|
4       t.string :name, :null => false, :limit => 50
5       t.string :classname, :null => false, :limit => 50
6       t.string :caption, :null => false, :limit => 30
7       t.string :url, :null => false
8
9       t.timestamps
10     end
11   end
12 end