16 lines
267 B
Ruby
16 lines
267 B
Ruby
|
class CreateFailedlogins < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
create_table :failedlogins do |t|
|
||
|
t.string :login
|
||
|
t.string :password
|
||
|
t.string :ip_address
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
drop_table :failedlogins
|
||
|
end
|
||
|
end
|