mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:51:43 +00:00
15 lines
312 B
Ruby
15 lines
312 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateBuildStats < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :build_stats do |t|
|
||
|
t.timestamps
|
||
|
t.belongs_to :deploy, index: true
|
||
|
t.integer :bytes
|
||
|
t.float :seconds
|
||
|
t.string :action, null: false
|
||
|
t.text :log
|
||
|
end
|
||
|
end
|
||
|
end
|