mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
14 lines
391 B
Ruby
14 lines
391 B
Ruby
class CreateNotifications < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :notifications do |t|
|
|
t.string :title
|
|
t.string :message
|
|
t.integer :type_of, null: false
|
|
t.integer :generator_user_id
|
|
|
|
t.timestamps null: false
|
|
end
|
|
add_index :notifications, :created_at
|
|
add_foreign_key :notifications, :users, column: :generator_user_id
|
|
end
|
|
end
|