15 lines
304 B
Ruby
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
|