mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-17 11:47:04 +02:00
13 lines
278 B
Ruby
13 lines
278 B
Ruby
class CreateFluentds < ActiveRecord::Migration
|
|
def change
|
|
create_table :fluentds do |t|
|
|
t.string :variant, null: false # fluentd, td-agent, or remote
|
|
t.string :pid_file
|
|
t.string :log_file
|
|
t.string :config_file
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|