You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20150519014639_create_homew...

16 lines
338 B

class CreateHomeworkDetailProgramings < ActiveRecord::Migration
def up
create_table :homework_detail_programings do |t|
t.string :language
t.text :standard_code, :limit => 4294967295
t.integer :homework_common_id
t.timestamps
end
end
def down
drop_table :homework_detail_programings
end
end