Files
codeocean/db/migrate/20140829141913_create_hints.rb

13 lines
273 B
Ruby

class CreateHints < ActiveRecord::Migration[4.2]
def change
create_table :hints do |t|
t.belongs_to :execution_environment
t.string :locale
t.text :message
t.string :name
t.string :regular_expression
t.timestamps
end
end
end