• You need to enable the db for replication.

    You can do it through publisher properties or this TSQL

    exec sp_replicationdboption @dbname='dbname', @optname= 'publish', @value= 'true'

    GO