Class: CreateTaskflowRecords

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/templates/create_taskflow_records.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
12
# File 'lib/generators/templates/create_taskflow_records.rb', line 2

def change
    create_table :taskflow_records do |t|
        t.integer :step_id
        t.string :writer
        t.string :level
        t.string :content
        t.text :tags
        t.datetime :written_at
        t.integer :logger_id
    end
end