mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 19:08:10 -05:00
16 lines
324 B
Ruby
16 lines
324 B
Ruby
|
class CreateAdminLogs < ActiveRecord::Migration
|
||
|
def up
|
||
|
create_table :admin_logs do |t|
|
||
|
t.integer :action, null: false
|
||
|
t.integer :admin_id, null: false
|
||
|
t.integer :target_user_id
|
||
|
t.text :details
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
drop_table :admin_logs
|
||
|
end
|
||
|
end
|