mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
265 B
15 lines
265 B
class ActsAsLoggableUserActionsMigration < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
create_table :user_actions do |t|
|
|
t.string :action, :limit => 128, :null => false
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :user_actions
|
|
end
|
|
|
|
end
|
|
|
|
|