mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:42:04 +08:00
15 lines
289 B
Ruby
15 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateMessageBus < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :message_bus do |t|
|
|
t.string :name
|
|
t.string :context
|
|
t.text :data
|
|
t.datetime :created_at
|
|
end
|
|
|
|
add_index :message_bus, [:created_at]
|
|
end
|
|
end
|