diff options
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20140222051253_create_well_types.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20140222051253_create_well_types.rb b/db/migrate/20140222051253_create_well_types.rb new file mode 100644 index 0000000..aa22bca --- /dev/null +++ b/db/migrate/20140222051253_create_well_types.rb @@ -0,0 +1,8 @@ +class CreateWellTypes < ActiveRecord::Migration + def change + create_table :well_types do |t| + t.string :name + t.string :acronym + end + end +end |
