OSDN Git Service

v07
[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
5       t.column :artist_name, :text, :null => false, :default => 'unknown'
6
7       t.timestamps
8     end
9   end
10 end