OSDN Git Service

Merge branch 'v05' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v05
[pettanr/pettanr.git] / db / migrate / 20120806235252_create_standard_licenses_attributes.rb
1 class CreateStandardLicensesAttributes < ActiveRecord::Migration
2   def change
3     create_table :standard_licenses_attributes do |t|
4       t.column :license_id, :integer, :null => false, :default => 0\r
5       t.column :artist_name, :string, :null => false, :default => 'unknown'\r
6
7       t.timestamps
8     end
9   end
10 end