ensl.org/db/migrate/20100217152110_create_log_events.rb

14 lines
No EOL
255 B
Ruby

class CreateLogEvents < ActiveRecord::Migration
def self.up
create_table :log_events do |t|
t.string :name
t.string :description
t.integer :team
t.timestamps
end
end
def self.down
drop_table :log_events
end
end