mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
14 lines
No EOL
255 B
Ruby
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 |