mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 11:47:41 +00:00
10 lines
166 B
Ruby
10 lines
166 B
Ruby
class CreateDistributors < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :distributors do |t|
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|