11 lines
202 B
Ruby
11 lines
202 B
Ruby
|
class CreateLeaderSkills < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :leader_skills do |t|
|
||
|
t.string :name
|
||
|
t.string :description
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|