walter/test/dummy/db/migrate/20161118143752_create_abraham_histories.rb
2021-10-01 01:24:08 +02:00

15 lines
335 B
Ruby

# frozen_string_literal: true
class CreateWalterHistories < ActiveRecord::Migration[5.0]
def change
create_table :walter_histories do |t|
t.string :controller_name
t.string :action_name
t.string :tour_name
t.references :creator, null: false, index: true
t.timestamps index: true
end
end
end