@@ -1,13 +1,13 | |||
|
1 | 1 | class CreateImports < ActiveRecord::Migration |
|
2 | 2 | def change |
|
3 | 3 | create_table :imports do |t| |
|
4 | 4 | t.string :type |
|
5 | 5 | t.integer :user_id, :null => false |
|
6 | 6 | t.string :filename |
|
7 | 7 | t.text :settings |
|
8 | 8 | t.integer :total_items |
|
9 | 9 | t.boolean :finished, :null => false, :default => false |
|
10 | t.timestamps | |
|
10 | t.timestamps :null => false | |
|
11 | 11 | end |
|
12 | 12 | end |
|
13 | 13 | end |
General Comments 0
You need to be logged in to leave comments.
Login now