13 lines
286 B
Ruby
13 lines
286 B
Ruby
class CreateOriginalGangstas < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :original_gangstas do |t|
|
|
t.text :chip_name
|
|
t.text :chip_code
|
|
t.text :chip_symbol
|
|
t.boolean :chip_prefixed
|
|
t.integer :chip_scale
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end |