Files
codeocean/db/migrate/20140829141913_create_hints.rb
2021-05-14 22:03:06 +02:00

15 lines
304 B
Ruby

# frozen_string_literal: true
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