mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
10 lines
192 B
Ruby
10 lines
192 B
Ruby
|
class CreateMyModuleGroups < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :my_module_groups do |t|
|
||
|
t.string :name, null: false
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|