retrospring/db/migrate/20141227130438_create_reports.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
286 B
Ruby
Raw Normal View History

2023-10-20 01:37:34 +02:00
# frozen_string_literal: true
class CreateReports < ActiveRecord::Migration[4.2]
2014-12-27 14:35:09 +01:00
def change
create_table :reports do |t|
t.string :type, null: false
t.integer :target_id, null: false
t.integer :user_id, null: false
t.timestamps
end
end
end