11 lines
202 B
Ruby
11 lines
202 B
Ruby
class CreateTracepoints < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :tracepoints do |t|
|
|
# t.column :name, :string
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :tracepoints
|
|
end
|
|
end
|