This commit is contained in:
r888888888
2014-11-19 21:28:26 -08:00
parent 177ef0ebcc
commit 2b5ce48d5c
9 changed files with 219 additions and 91 deletions

View File

@@ -0,0 +1,12 @@
class CreateDmailFilters < ActiveRecord::Migration
def change
create_table :dmail_filters do |t|
t.integer :user_id, :null => false
t.text :words, :null => false
t.timestamps
end
add_index :dmail_filters, :user_id, :unique => true
end
end