Delete temp migration file in test and ignore it

This commit is contained in:
John Nunemaker 2017-03-16 15:34:18 -04:00
Родитель 0502302ea6
Коммит 854705ab8d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: D80B5604D6DC62E0
2 изменённых файлов: 1 добавлений и 19 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -7,3 +7,4 @@
/pkg/
/spec/reports/
/tmp/
/test/tmp/

Просмотреть файл

@ -1,19 +0,0 @@
class CreateKeyValuesTable < ActiveRecord::Migration
def self.up
create_table :key_values do |t|
t.string :key, :null => false
t.binary :value, :null => false
t.datetime :expires_at, :null => true
t.timestamps :null => false
end
add_index :key_values, :key, :unique => true
add_index :key_values, :expires_at
change_column :key_values, :id, "bigint(20) NOT NULL AUTO_INCREMENT"
end
def self.down
drop_table :key_values
end
end