9 lines
164 B
Ruby
9 lines
164 B
Ruby
class CreateUnits < ActiveRecord::Migration
|
|
def change
|
|
create_table :units do |t|
|
|
t.string :name
|
|
t.string :short_name, limit: 4
|
|
end
|
|
end
|
|
end
|