walter/test/dummy/db/migrate/20161118143752_create_abraham_histories.rb
2018-10-04 15:16:10 -04:00

15 lines
337 B
Ruby

# frozen_string_literal: true
class CreateAbrahamHistories < ActiveRecord::Migration[5.0]
def change
create_table :abraham_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